gen

command module
v1.0.0-...-8081051 Latest Latest
Warning

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

Go to latest
Published: Jun 1, 2014 License: BSD-3-Clause, MIT Imports: 21 Imported by: 0

README

What’s this?

gen is an attempt to bring some generics-like functionality to Go, with some inspiration from C#’s Linq and JavaScript’s underscore libraries. It’s currently an early alpha.

####Introduction and docs...

Changelog

Contributing

It’s early days and the API is likely volatile, ideas and contributions are welcome. Have a look at the design principles below. Feel free to open an issue, send a pull request, or ping Matt Sherman @clipperhouse.

Design principles for contributors

This library exists to provide readability and reduce boilerplate in users’ code. It’s intended to reduce the number of explicit loops, by instead passing func’s as you would with C#’s Linq, JavaScript’s Array methods, or the underscore library. If it feels like piping, that’s good.

It’s intended to fit well with idiomatic Go. Explicitness and compile-time safety are preferred. For this reason, we are not using interfaces or run-time reflection. (Though if a good case can be made, we’ll listen.)

The goal is to keep the API small. We aim to implement the least number of orthogonal methods which allow the desired range of function.

It’s about types. If something would be expressed <T> in another language, perhaps it’s a good candidate for gen. If it would not be expressed that way, perhaps it’s not a good candidate.

We avoid methods that feel like wrappers or aliases to existing methods, even if they are convenient. A good proxy is to imagine a user asking the question ‘which method should I use?’. If that’s a reasonable question, the library should be doing less.

These guidelines are not entirely deterministic! There’s lots of room for judgment and taste, and we look forward to seeing how it evolves.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package templates includes the types and functionality for including templates in the gen package.
Package templates includes the types and functionality for including templates in the gen package.
container
Package templates/container includes the type containers used by gen, such as Set and List.
Package templates/container includes the type containers used by gen, such as Set and List.
projection
Package templates/projection includes the projection methods used by gen, such as GroupBy and Average.
Package templates/projection includes the projection methods used by gen, such as GroupBy and Average.
standard
Package templates/standard includes the basic methods used by gen, including the plural type and methods such as Count and Where.
Package templates/standard includes the basic methods used by gen, including the plural type and methods such as Count and Where.

Jump to

Keyboard shortcuts

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