Sha256: fbc8897ff8c7142ae6b06cdefa891f8e0fe351fecc2ff324550792c312007587
Contents?: true
Size: 300 Bytes
Versions: 32
Compression:
Stored size: 300 Bytes
Contents
# frozen_string_literal: true module Lutaml module Model # Comparison of two values for ComparableMapper class Comparison attr_accessor :original, :updated def initialize(original:, updated:) @original = original @updated = updated end end end end
Version data entries
32 entries across 32 versions & 1 rubygems