Treatment isF64

json/value::isF64


Inputs

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

Outputs

↦ is_f64: Stream<bool>


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

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

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