class Symbol

Public Instance Methods

/(other) click to toggle source

Create new combination symbol with slash.

@example

:foo/:bar  #=> :'foo/bar'
# File lib/anise/core_ext.rb, line 31
def /(other)
  "#{self}/#{other}".to_sym
end