Fields
public struct Fields
Fields
has static constructors for field extractors that can be used when
the result value is still undefined. These constructors are useful for complex
field compositions.
For example:
Fields.at("data", "arrayOfArrays").get(
asArrayOf: Fields.get(asArrayOf: Field<String>())
)
// Resulting type: Field<[[String]]>