()
| 221 | } |
| 222 | |
| 223 | private static final ThrowingFunction<SelectField<?>, Field<?>, RuntimeException> toField() { |
| 224 | return f -> f instanceof Row r |
| 225 | ? new RowAsField<>(r) |
| 226 | : f instanceof Table<?> t |
| 227 | ? new TableAsField<>(t) |
| 228 | : (Field<?>) f; |
| 229 | } |
| 230 | |
| 231 | @Override |
| 232 | public final int size() { |