Gophers All The Way Down
Gophers all the way down is a library embracing functional programming, written in Go.
This is a pre-alpha version and should under no circumstances be used yet!
The main purpose of this library is educational. I felt to strong urge to get a basic understanding on the principles of functional programming. While the Haskell community goes great length to explain those principles, it seems to be in the nature of things, that once understood, one immediately looses the capability to explain those principles. The same is true it seems, for the principles of higher mathematics. Regarding the latter, I found a way to overcome this ‘law of nature’ in the past, by implementing algorithms I had trouble understanding in code. Having code compile and tests go green rules out misconception and provides the confidence necessary, not to accidently overestimating the personal level of understanding. Having made this experience a couple of times in the past, I figured, why not write a functional library?
Former self educational projects had no other purpose but self education. There was always some standard library implementing, whatever I was working on in far better and more professional ways and consequently those projects never where much of a use. With this exercise that might be different. While Java has Scale, C# has F# and JavaScript has Closure, I couldn’t find any functional programming library written in Go, that was particularly useful, let alone providing an alternative ML like syntax to write the code in.
Should this library reach the necessary stability and set of features, it should be possible to write a functional parser library on top, implementing ML like Syntax. Generating Domain specific languages could be one example of a useful application. Building a decent version of a jsonnet/ksonnet interpreter, able to deal with sets of multiple interconnected json/yaml declarations, without taking forever, or spilling the stack would be another. Last but not least, it provides ‘kind of generics’, at least for everyone willing, to write code in FP style. A far fetched goal would be the implementation of a compiler to strip all the layers of indirection, boxing and interface lookups, introduced by the library and generating strongly typed go code, relying on the go compiler for typesafety instead.
the data package provides:
lots of other interfaces for groups of types that share behavior such as.
a generic slice of (interfaced) natives, featuring helpful methods on slices
the function package provides
pattern matching
user defined types:
type pattern with elements of types:
generic implementations of:
completing the base features (see above)
current state of implementation:
work in progress:
function composition based parser library
ML interpreter
data structure generation from:
compiler to generate go native typed code, stripped of as much indirection as possible