ByType orders the results by the type field.
(opts ...sql.OrderTermOption)
| 179 | |
| 180 | // ByType orders the results by the type field. |
| 181 | func ByType(opts ...sql.OrderTermOption) OrderOption { |
| 182 | return sql.OrderByField(FieldType, opts...).ToFunc() |
| 183 | } |
| 184 | |
| 185 | // ByServer orders the results by the server field. |
| 186 | func ByServer(opts ...sql.OrderTermOption) OrderOption { |
nothing calls this directly
no outgoing calls
no test coverage detected