From 0faa29f2c11a6d906f340397eca5c4bc6d0f1dc6 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Fri, 3 Nov 2023 21:06:29 +0000 Subject: Commit all --- missing.go | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 missing.go (limited to 'missing.go') diff --git a/missing.go b/missing.go new file mode 100644 index 0000000..92f92aa --- /dev/null +++ b/missing.go @@ -0,0 +1,37 @@ +package badtudexo + +import ( + st "saggytrousers" +) + +type MissingValue[T any] struct { + Value T + Index int +} + +func MissingValueNew[T any](value T, index int) MissingValue[T] { + return MissingValue[T]{ value, index } +} + +// Iterates through `check`, and returns all that are _not_ present in `src`, returning both the index in the array, and the value itself. +func Missing[T comparable](check, src []T) []MissingValue[T] { + var missing []MissingValue[T] + for i, v := range check { + if !st.InSlice(src, v) { + mv := MissingValueNew(v, i) + missing = append(missing, mv) + } + } + + return missing +} + +// Iterates through `src`, and returns whether all are present in `check`. +func Present[T comparable](check, src []T) bool { + for _, v := range src { + if !st.InSlice(check, v) { + return false + } + } + return true +} -- cgit v1.2.1