Last active
December 29, 2021 02:37
-
-
Save nwillc/f8c3378e789685edcf83ad3e0444405b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hasData genfuncs.Predicate[string] = func(l string) bool { return len(l) > 2 } | |
toRuneSlice genfuncs.Function[string, []rune] = func(s string) []rune { return []rune(s) } | |
toPixel genfuncs.Function[rune, bool] = func(r rune) bool { return r == blackPixel } | |
toPixelSlice genfuncs.Function[[]rune, []bool] = func(rs []rune) []bool { return genfuncs.Map(rs, toPixel) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment