Class: MilkTea::DocsApp

Inherits:
Sinatra::Base
  • Object
show all
Defined in:
lib/milk_tea/tooling/docs_app.rb

Constant Summary collapse

SNAPSHOT_CACHE =
{}
MODULE_CATEGORIES =
{
  "Collections" => %w[vec deque binary_heap priority_queue ordered_set ordered_map map set linked_map linked_set counter multiset queue stack],
  "Memory" => %w[mem cell],
  "Text & Format" => %w[string str fmt cstring encoding base64],
  "Math & Random" => %w[math random],
  "Data & Serialization" => %w[binary bytes json toml tar gzip zstd crypto hash],
  "Concurrency" => %w[async jobs sync thread],
  "Files & I/O" => %w[fs path stdio],
  "System" => %w[ctype errno process time c],
  "Network & HTTP" => %w[net http uri cookie curl],
  "Game & Graphics" => %w[raylib box2d flecs enet cgltf cjson],
  "Algorithms & AI" => %w[fsm behavior_tree goap],
  "Database & Matching" => %w[sqlite3 pcre2],
  "Utilities" => %w[cli terminal span spatial asset_pack],
}.freeze