Treatment isString

json/value::isString


Inputs

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

Outputs

↦ is_string: Stream<bool>


Emit true for each JSON value in the stream that is a string, false otherwise.

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

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