Class: Flex::Struct::Array

Inherits:
Array
  • Object
show all
Includes:
Symbolize
Defined in:
lib/flex/struct/array.rb

Instance Method Summary collapse

Methods included from Symbolize

#symbolize

Instance Method Details

#<<(val) ⇒ Object



11
12
13
# File 'lib/flex/struct/array.rb', line 11

def <<(val)
  super symbolize(val)
end

#insert(*vals) ⇒ Object



15
16
17
# File 'lib/flex/struct/array.rb', line 15

def insert(*vals)
  super *symbolize(vals)
end

#push(*vals) ⇒ Object



7
8
9
# File 'lib/flex/struct/array.rb', line 7

def push(*vals)
  super *symbolize(vals)
end

#unshift(*vals) ⇒ Object



19
20
21
# File 'lib/flex/struct/array.rb', line 19

def unshift(*vals)
  super *symbolize(vals)
end