| 173 | } // namespace internal |
| 174 | |
| 175 | FilterOptions::FilterOptions(NullSelectionBehavior null_selection) |
| 176 | : FunctionOptions(internal::kFilterOptionsType), |
| 177 | null_selection_behavior(null_selection) {} |
| 178 | constexpr char FilterOptions::kTypeName[]; |
| 179 | |
| 180 | TakeOptions::TakeOptions(bool boundscheck) |
no outgoing calls