Skip to main content

cljrs_runtime/
lib.rs

1//! Core standard library for clojurust (`clojure.core` equivalent).
2//!
3//! Phase 5 will implement:
4//! - Arithmetic, comparison, and type-predicate functions
5//! - Persistent collection operations and seq abstractions
6//! - Higher-order functions (`map`, `filter`, `reduce`, …)
7//! - Lazy sequences, I/O, string utilities
8//! - Core macros (`when`, `cond`, `->`, `for`, …)
9//! - Concurrency primitives (atom, ref/STM, agent, future) — Phase 7