4 results for "all documents"
languages/nim/common_pitfalls.md
The canonical, exhaustive catalogue of Nim semantics that cause confident-but-wrong LLM-generated code: partial case/underscore-insensitive identifiers, the Nim 1.x-to-2.0 ARC/ORC memory-management default change, ref-vs...
languages/nim/concurrency.md
Verified guidance on Nim threading primitives (std/typedthreads, std/locks, channels), ARC/ORC's shared-heap thread model, taskpools/weave versus the deprecated std/threadpool, and the critical, non-interoperable split b...
languages/nim/interop_ffi.md
Verified guidance on Nim's C FFI (importc/exportc/header/emit), cstring lifetime and GC-safety pitfalls, c2nim binding generation, and compiling Nim to the C++ (importcpp), JavaScript (importjs), and Objective-C (importo...
languages/nim/metaprogramming.md
Verified reference for Nim's compile-time metaprogramming system: hygienic templates and their call-by-name semantics, AST-level macros with NimNode and quote do:, generic constraints and the current stability status of ...