Sha256: 084bb922e369b9ed96a5ee0c4ea748cc3289670b197ea0c29eecd38f5b3a06b1

Contents?: true

Size: 503 Bytes

Versions: 7

Compression:

Stored size: 503 Bytes

Contents

# frozen_string_literal: true

#
# Copyright (c) 2018-present, Blue Marble Payroll, LLC
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#

module Differential
  module Calculator
    # Differential can currently only compute calculations for two datasets, represented as:
    # A and B.  Ultimately, how you define what A and B are up to the consuming application.
    module Side
      A = :a
      B = :b
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
differential-1.1.0 lib/differential/calculator/side.rb
differential-1.0.6 lib/differential/calculator/side.rb
differential-1.0.5 lib/differential/calculator/side.rb
differential-1.0.4 lib/differential/calculator/side.rb
differential-1.0.3 lib/differential/calculator/side.rb
differential-1.0.2 lib/differential/calculator/side.rb
differential-1.0.1 lib/differential/calculator/side.rb