Construct a by-name FieldRef. Multiple fields may match a by-name FieldRef: [f for f in schema.fields where f.name == self.name]
| 2092 | /// Construct a by-name FieldRef. Multiple fields may match a by-name FieldRef: |
| 2093 | /// [f for f in schema.fields where f.name == self.name] |
| 2094 | FieldRef(std::string name) : impl_(std::move(name)) {} // NOLINT runtime/explicit |
| 2095 | FieldRef(const char* name) : impl_(std::string(name)) {} // NOLINT runtime/explicit |
| 2096 | |
| 2097 | /// Equivalent to a single index string of indices. |