Module uclicious::raw::iterator[][src]

Expand description

Iterators for ObjectRef.

Automatic arrays creation

Non-unique keys in an object are allowed and are automatically converted to the arrays internally:

key = "value1"
key = "value2"

is converted to:

key = ["value1", "value2"]

Single values are automatically converted into arrays as well.

Structs