sortby

package
v0.0.0-...-781836f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 19, 2024 License: Apache-2.0 Imports: 0 Imported by: 11

Documentation

Overview

Package sortby provides a succinct way to generate correctly-behaved Less functions for use with the stdlib 'sort' package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Chain

type Chain []LessFn

Chain is a list of LessFns, each of which sorts a single aspect of your object. Nil LessFns will be ignored.

func (Chain) Use

func (c Chain) Use(i, j int) bool

Use is a sort-compatible LessFn that actually executes the full chain of comparisons.

type LessFn

type LessFn func(i, j int) bool

LessFn is the type of the function which compares element i with element j of a given slice. Unlike the stdlib sort interpretation of this function, a LessFn in sortby should only compare a single field in your datastructure's elements. Multiple LessFns can be composed with Chain to create a composite Less implementation to pass to sort.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL