OrderAs returns an option to set the alias for the ordering.
(as string)
| 311 | |
| 312 | // OrderAs returns an option to set the alias for the ordering. |
| 313 | func OrderAs(as string) OrderTermOption { |
| 314 | return func(o *OrderTermOptions) { |
| 315 | o.As = as |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | // OrderSelected returns an option to select the ordering term. |
| 320 | func OrderSelected() OrderTermOption { |
no outgoing calls