class CamelString

Specialized String type

Public Class Methods

new(val = nil) click to toggle source
Calls superclass method
# File lib/attribute_struct/monkey_camels.rb, line 105
def initialize(val = nil)
  super
  if (val.respond_to?(:_camel?))
    _no_hump unless val._camel?
    @__hump_style = val._hump_style
  end
end