piotrmurach/tty-table

View on GitHub
lib/tty/table/operation/filter.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module TTY
  class Table
    module Operation
      # A class responsible for transforming table field
      #
      # @api private
      class Filter
        # Initialize a Filter
        #
        # @api public
        def initialize(filter)
          @filter = filter
        end

        # Apply filer to the provided table field
        #
        # @param [TTY::Table::Field] field
        #
        # @param [Integer] row
        #   the field row index
        #
        # @param [Integer] col
        #   the field column index
        #
        # @api public
        def call(field, row, col)
          @filter.call(field.content, row, col)
        end
      end # Filter
    end # Operation
  end # Table
end # TTY