You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Package main - generated by fungen; DO NOT EDIT
package main
// GeneratorList is the type for a list that holds members of type Generator
type GeneratorList []Generator
// Filter is a method on GeneratorList that takes a function of type Generator -> bool returns a list of type GeneratorList which contains all members from the original list for which the function returned true
// Each is a method on GeneratorList that takes a function of type Generator -> void and applies the function to each member of the list and then returns the original list.