Treatment isI64

json/value::isI64


Inputs

⇥ value: Stream<Json> (json::Json)

Outputs

↦ is_i64: Stream<bool>


Emit true for each JSON value in the stream that is representable as i64, false otherwise.

graph LR
     T("isI64()")
     A["🟦 … 🟨"] -->|value| T
     T -->|is_i64| B["false … true"]

     style A fill:#ffff,stroke:#ffff
     style B fill:#ffff,stroke:#ffff