All Projects → alxrm → ugo

alxrm / ugo

Licence: MIT license
Simple and expressive toolbox written in Go

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to ugo

php-underscore
PHP underscore inspired &/or cloned from _.js, with extra goodies like higher order messaging
Stars: ✭ 42 (+55.56%)
Mutual labels:  fluent-interface, collections, underscore
Funky
Funky is a functional utility library written in Objective-C.
Stars: ✭ 41 (+51.85%)
Mutual labels:  functional, collections
pyfuncol
Functional collections extension functions for Python
Stars: ✭ 32 (+18.52%)
Mutual labels:  functional, collections
rudash
Rudash - Lodash for Ruby Apps
Stars: ✭ 27 (+0%)
Mutual labels:  functional, underscore
trembita
Model complex data transformation pipelines easily
Stars: ✭ 44 (+62.96%)
Mutual labels:  functional, collections
Eclipse Collections
Eclipse Collections is a collections framework for Java with optimized data structures and a rich, functional and fluent API.
Stars: ✭ 1,828 (+6670.37%)
Mutual labels:  functional, collections
Nspl
Non-Standard PHP Library - functional primitives toolbox and more
Stars: ✭ 365 (+1251.85%)
Mutual labels:  functional, underscore
Moses
Utility library for functional programming in Lua
Stars: ✭ 541 (+1903.7%)
Mutual labels:  functional, underscore
Yalinqo
Yet Another LINQ to Objects for PHP [Simplified BSD]
Stars: ✭ 400 (+1381.48%)
Mutual labels:  functional, underscore
Babel Plugin Partial Application
[DEPRECATED] Please use https://github.com/citycide/param.macro
Stars: ✭ 60 (+122.22%)
Mutual labels:  functional, underscore
Param.macro
Partial application syntax and lambda parameters for JavaScript, inspired by Scala's `_` & Kotlin's `it`
Stars: ✭ 170 (+529.63%)
Mutual labels:  functional, underscore
SwiftBuilder
SwiftBuilder is a fast way to assign new value to the property of the object.
Stars: ✭ 26 (-3.7%)
Mutual labels:  fluent-interface
indicium
🔎 A simple in-memory search for collections and key-value stores.
Stars: ✭ 41 (+51.85%)
Mutual labels:  collections
js-data-structures
🌿 Data structures for JavaScript
Stars: ✭ 56 (+107.41%)
Mutual labels:  functional
when-switch
JavaScript functional implementation of switch/case
Stars: ✭ 20 (-25.93%)
Mutual labels:  functional
pen
The parallel, concurrent, and functional programming language for scalable software development
Stars: ✭ 394 (+1359.26%)
Mutual labels:  functional
hawkweed
Yet another implementation of missing functions for Python
Stars: ✭ 20 (-25.93%)
Mutual labels:  functional
swift-declarative-configuration
Declarative configuration for your objects
Stars: ✭ 46 (+70.37%)
Mutual labels:  functional
dart-more
More Dart — Literally.
Stars: ✭ 81 (+200%)
Mutual labels:  functional
pythonic
Python like utility functions for JavaScript: range, enumerate, zip and items.
Stars: ✭ 28 (+3.7%)
Mutual labels:  functional

GoDoc Go Report Card Travis CI

ugo

Simple and expressive toolbox written with love and care in Go.

Deeply inspired by underscore.js and has the same syntax and behaviour

Fully covered with tests, no surprises

Quick start

Installation

go get -u  github.com/alxrm/ugo

Import

import (
	u "github.com/alxrm/ugo"
)

Usage

It works with some special type, named Seq, which is an alias for []interface{}

So let's make some

	
// creates the new string Seq
strSeq := u.Seq{ "nineteen", "eigth", "four" } // ["nineteen" "eigth" "four"]
	
// creates the new Seq with given length
emptySeq := u.NewSeq(0); // []
	
// copies reflectively all of the values from int slice to Seq
intSlc := []int{ 4, 6, 2, 7, 8, 10, 9, 9, 120, 10, 2, 17 }
intSeq := u.From(intSlc, len(intSlc)) // [4 6 2 7 8 10 9 9 120 10 2 17]

Actually reflection approach in u.From can have an impact on performance 🐌 so use it with care.

Okay, now we have some Seq's,

What if I want to leave only unique elements in my int slice?

Go and get it

initialSeq := u.Seq{ 4, 6, 2, 7, 8, 10, 9, 9, 120, 10, 2, 17 }
uniquedSeq := u.Uniq(initial, func(l, r u.Object) int { return l.(int) - r.(int) })

fmt.Println(uniquedSeq) // [4 6 2 7 8 10 9 120 17]

And I want to leave only odd ones

Nice choice! 🔥

oddsSeq := u.Filter(uniquedSeq, func(cur, _, _ u.Object) bool { return cur.(int) % 2 != 0 })

fmt.Println(oddsSeq) // [7 9 17]

Well, sometimes you may want to use many method one by one, and it can be a bit ugly

Here we are, fluent syntax, just like in underscore.js 🚀

initialSeq := u.Seq{ 4, 6, 2, 7, 8, 10, 9, 9, 120, 10, 2, 17 }

res := u.Chain(initialSeq).Uniq(func(l, r u.Object) int {
	return l.(int) - r.(int)
}).Filter(func(cur, _, _ u.Object) bool {
	return cur.(int) % 2 != 0
}).Value()

fmt.Println(res) // [7 9 17]

Try it by yourself!

Explore all of the features and get your slice routine done faster

Contribute

We highly appreciate any of your pull requests and issues!

Be welcome

Some of the TODOs:

  • Aliases from underscore
  • Chaining like map(...).uniq(...).result()
  • Better documentation

License

The MIT License (MIT)

Copyright (c) 2016 Alexey Derbyshev

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].