// ---
// tags: nox, rust
// crystal-type: source
// crystal-domain: comp
// ---
//! jets โ Layer 3 optimized implementations (specs/jets/)
//!
//! Jets are observationally equivalent to pure Layer 1 nox formulas.
//! They are NOT new patterns with dedicated tags โ tags 0-17 are the
//! complete Layer 1+2 pattern set. Jets are recognized by formula hash:
//!
//! jet_registry: H(formula_data) โ jet_implementation
//!
//! At reduction time, before tag-dispatching, reduce_inner checks whether
//! H(formula) is in the jet registry. If yes the jet runs; if no the formula
//! reduces normally through Layer 1 patterns. Remove all jets: identical
//! results, orders of magnitude slower. See specs/jets.md.
Homonyms
cyb/evy/forks/naga/src/back/hlsl/mod.rs
struct Baz { m: mat3x2, } struct Baz { float2 m_0; float2 m_1; float2 m_2; }; float3x2 GetMatmOnBaz(Baz obj) { return float3x2(obj.m_0, obj.m_1, obj.m_2); }