Treatment isVector

json/value::isVector


Inputs

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

Outputs

↦ is_vector: Stream<bool>


Emit true for each JSON value in the stream that is an array, false otherwise.

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

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