Module: Iode::Core::Strings

Defined in:
lib/iode/core/strings.rb

Instance Method Summary collapse

Instance Method Details

#format(s, *args) ⇒ Object



24
25
26
# File 'lib/iode/core/strings.rb', line 24

def format(s, *args)
  s % args
end

#str(*args) ⇒ Object



20
21
22
# File 'lib/iode/core/strings.rb', line 20

def str(*args)
  args.map(&:to_s).join
end