compchain

package
v0.0.0-...-7272a43 Latest Latest
Warning

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

Go to latest
Published: Nov 12, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

Package compchain provides a utility for performing a chained comparison statement.

Example
package main

import (
	"fmt"
	"sort"

	"github.com/abc-inc/goava/collect/compchain"
)

type user struct {
	ID   int
	Name string
	Mail string
}

func main() {
	users := []user{
		{2, "John Doe", "john.william.doe@mail.com"},
		{1, "John Doe", "john.doe@mail.com"},
	}

	less := func(i, j int) bool {
		u1 := users[i]
		u2 := users[j]
		return compchain.Start().
			CompareString(u1.Name, u2.Name).
			CompareString(u1.Mail, u2.Mail).
			CompareInt(u1.ID, u2.ID).
			Result() < 0
	}

	fmt.Println(sort.SliceIsSorted(users, less))
	sort.Slice(users, less)
	fmt.Println(sort.SliceIsSorted(users, less))
}
Output:

false
true

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ComparisonChain

type ComparisonChain interface {

	// Compares two objects using a comparator, if the result of this comparison chain has not already been determined.
	CompareFunc(left, right interface{}, cmp func(l, r interface{}) int) ComparisonChain

	// Compares two int values, if the result of this comparison chain has not already been determined.
	CompareInt(left, right int) ComparisonChain

	// Compares two int8 values, if the result of this comparison chain has not already been determined.
	CompareInt8(left, right int8) ComparisonChain

	// Compares two int16 values, if the result of this comparison chain has not already been determined.
	CompareInt16(left, right int16) ComparisonChain

	// Compares two int32 values, if the result of this comparison chain has not already been determined.
	CompareInt32(left, right int32) ComparisonChain

	// Compares two int64 values, if the result of this comparison chain has not already been determined.
	CompareInt64(left, right int64) ComparisonChain

	// Compares two uint values, if the result of this comparison chain has not already been determined.
	CompareUInt(left, right uint) ComparisonChain

	// Compares two uint8 values, if the result of this comparison chain has not already been determined.
	CompareUInt8(left, right uint8) ComparisonChain

	// Compares two uint16 values, if the result of this comparison chain has not already been determined.
	CompareUInt16(left, right uint16) ComparisonChain

	// Compares two uint32 values, if the result of this comparison chain has not already been determined.
	CompareUInt32(left, right uint32) ComparisonChain

	// Compares two uint64 values, if the result of this comparison chain has not already been determined.
	CompareUInt64(left, right uint64) ComparisonChain

	// Compares two uintptr values, if the result of this comparison chain has not already been determined.
	CompareUIntPtr(left, right uintptr) ComparisonChain

	// Compares two float32 values, if the result of this comparison chain has not already been determined.
	CompareFloat32(left, right float32) ComparisonChain

	// Compares two float64 values, if the result of this comparison chain has not already been determined.
	CompareFloat64(left, right float64) ComparisonChain

	// Compares two bool, considering true to be less than false, if the result of this comparison chain has not
	// already been determined.
	CompareTrueFirst(left, right bool) ComparisonChain

	// Compares two bool values, considering false to be less than true, if the result of this comparison chain has not
	// already been determined.
	CompareFalseFirst(left, right bool) ComparisonChain

	// Compares two string values, if the result of this comparison chain has not already been determined.
	CompareString(left, right string) ComparisonChain

	// Ends this comparison chain and returns its result: a value having the same sign as the first nonzero comparison
	// result in the chain, or zero if every result was zero.
	Result() int
}

ComparisonChain performs a chained comparison statement.

The value of this expression will have the same sign as the first nonzero comparison result in the chain, or will be zero if every comparison result was zero.

Note: ComparisonChain instances are immutable. For this utility to work correctly, calls must be chained as illustrated in the example.

Performance note: Even though the ComparisonChain caller always invokes its compare functions unconditionally, the ComparisonChain implementation stops comparing its inputs and as soon as one of them returns a nonzero result. This optimization is typically important only in the presence of expensive comparisons.

func Start

func Start() ComparisonChain

Start begins a new chained comparison statement.

Jump to

Keyboard shortcuts

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