No commit activity in last 3 years
No release in over 3 years
Simple wrapper between enumerator and parallel.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.0.0
>= 0

Runtime

>= 1.4.1
 Project Readme

Kasen

Gem Version

kasen.png

下線(Kasen) ... Underscore.

require 'kasen'

[[1, 2], [3, 4]].map &_[1]
#=> [2, 4]
# is equivalent for [[1, 2], [3, 4]].map { |ary| ary[1] }

&_.to_i.zero?
# is equivalent for
{ |s| s.to_i.zero? }

&_.select(&_.to_i.eql?(1))
# is equivalent for
{ |ary| ary.select { |n| n.to_i.eql?(1) } }

calling any method with _ produces Proc object which is equivalent for calling methods in Proc body.

note: you can use k instead of _ in IRB.

['0', '1', '2'].select &_.to_i.zero?
#=> ["0"]
# is equivalent for ['0', '1', '2'].select { |s| s.to_i.zero? }

[['1', '2'], ['3', '4']].map &_.select(&_.to_i.eql?(1))
#=> [["1"], []]
# is equivalent for [['1', '2'], ['3', '4']].map { |ary| ary.select { |n| n.to_i.eql?(1) } }

Doc

Installation

Have it your way.

$ echo "gem 'kasen'" >> Gemfile; bundle

or

$ gem install kasen

What dose _(Kernel#_) do?

_(Kernel#_) just returns empty object Kasen.new, all of which methods has been undefined expect for Kasen#to_proc, Kasen#method_missing.

and say, when _ call #to_i(_.to_i), Kasen#method_missing store context(method_name, args, blokc) recursively.

And finnaly Kasen#to_proc returns all contexts as a block.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release to create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

License

MIT license (© 2015 Kazuki Tanaka)