module Gemmy::Patches::StringPatch::InstanceMethods::Subtract

Public Instance Methods

-(pattern) click to toggle source

facets removes all instances of a pattern from a string

# File lib/gemmy/patches/string_patch.rb, line 284
def -(pattern)
  gsub(pattern, '')
end