Treatment fromOptionNumberU64

json/value::fromOptionNumberU64


Generics

◻ U: ToU64

Inputs

⇥ value: Stream<Option<U>>

Outputs

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


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

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

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