Treatment fromOptionNumberI64

json/value::fromOptionNumberI64


Generics

◻ I: ToI64

Inputs

⇥ value: Stream<Option<I>>

Outputs

↦ json: Stream<Json> (json::Json)


Convert each optional i64-convertible value in the stream into a JSON number, or null for none elements.

graph LR
     T("fromOptionNumberI64()")
     A["〈🟦〉 … 〈none〉"] -->|value| T
     T -->|json| B["🟦 … null"]

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