Categories: None [Edit]

primitive_wrapper

https://rubygems.org/gems/primitive_wrapper
This gem creates a thin shell to encapsulate primitive literal types such as integers, floats and symbols. There are a family of wrappers which mimic the behavior of what they contain. Primitive types have several drawbacks: no constructor to call, can't create instance variables, and can't create singleton methods. There is some utility in wrapping a primitive type. You can simulate a call by reference for example. You can also simulate mutability, and pointers. Some wrappers are dedicated to holding a single type while others may hold a family of types such as the `Number` wrapper. What is interesting to note is Number objects do not derive from `Numeric`, but instead derive from `Value` (the wrapper base class); but at the same time, `Number` objects mimic the methods of `Fixnum`, `Complex`, `Float`, etc. Many of the wrappers can be used in an expression without having to call an access method. There are also new types: `Bool` which wraps `true,false` and `Property` which wraps `Hash` types. The `Property` object auto-methodizes the key names of the Hash. Also `Fraction` supports mixed fractions.

Total

Ranking: 72,760 of 186,959
Downloads: 12,642

Daily

Ranking: 117,132 of 186,713
Downloads: 3

Depended by

RankDownloadsName
50,93520,829setfu
135,2904,299nth

Depends on

RankDownloadsName
12,905,736,219bundler
101,128,098,871rake
27909,387,510rspec
98414,508,575byebug
117,8365,584pred
126,7034,778blockify
169,1812,405yieldhelper

Owners

#GravatarHandle
1iconfweekyfweek