class Glaemscribe::API::TranscriptionPreProcessor

Public Instance Methods

apply(l) click to toggle source

Apply all preprocessor rules consecutively

# File lib/api/transcription_pre_post_processor.rb, line 110
def apply(l)
  ret = l
  @operators.each{ |operator|
    ret = operator.apply(ret)
  } 
  ret
end