gofun

module
v0.0.0-...-34fed76 Latest Latest
Warning

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

Go to latest
Published: Mar 29, 2022 License: Apache-2.0

README

gofun

Generic Enumerables

Lazy generic enumerables for Go.


//create an enumerable of strings
v1 := enumerable.From("a", "b", "c", "d", "e", "f", "hello", "world", "hi", "hoi", "howdy")

//filter the enumerable to only include strings that start with "h"
v2 := enumerable.Filter(v1, func(s string) bool {
    return strings.HasPrefix(s, "h")
})

//map the enumerable of string to int, collect the string length as the new value
v3 := enumerable.Map[string, int](v2, func(s string) int {
    return len(s)
})

//skip the first 3 elements
v4 := enumerable.Skip(v3, 3)

//then take the next 3 elements
v5 := enumerable.Limit(v4, 3)

//iterate the enumerable and create a slice of ints
v6 := enumerable.ToSlice(v5)

Clone(ish) of .NET LINQ

Generic Set

Typesafe Set type.

Generic Option type

Directories

Path Synopsis
_examples

Jump to

Keyboard shortcuts

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