Class: CSVDecision::Matchers::Matcher Private

Inherits:
Object
  • Object
show all
Defined in:
lib/csv_decision/matchers.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Subclass and override #matches? to implement a custom Matcher class.

Direct Known Subclasses

Constant, Function, Guard, Numeric, Pattern, Range, Symbol

Instance Method Summary collapse

Constructor Details

#initialize(_options = nil) ⇒ Matcher

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Matcher



169
# File 'lib/csv_decision/matchers.rb', line 169

def initialize(_options = nil); end

Instance Method Details

#ins?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Does this matcher apply to output cells?

Returns:

  • (Boolean)

    Return true if this matcher applies to input cells, false otherwise.



191
192
193
# File 'lib/csv_decision/matchers.rb', line 191

def ins?
  true
end

#matches?(cell) ⇒ false, CSVDecision::Proc

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Determine if the input cell string is recognised by this Matcher.

Parameters:

  • cell (String)

    Data row cell.

Returns:

  • (false, CSVDecision::Proc)

    Returns false if this cell is not a match; otherwise returns the CSVDecision::Proc object indicating if this is a constant or some type of function.



177
# File 'lib/csv_decision/matchers.rb', line 177

def matches?(cell); end

#outs?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Does this matcher apply to output cells?

Returns:

  • (Boolean)

    Return true if this matcher applies to output cells, false otherwise.



183
184
185
# File 'lib/csv_decision/matchers.rb', line 183

def outs?
  false
end