Sha256: 3a66e58f37deacc6a9210a1bfb943ddb91308e41b41352d40b0ea8764c6364d9
Contents?: true
Size: 613 Bytes
Versions: 7
Compression:
Stored size: 613 Bytes
Contents
# frozen_string_literal: true require_relative './month/history' # :nodoc: module Zakuro # # Result 演算結果 # module Result # # 運用情報 # class Operation # # Month 運用情報(月) # class Month # @return [History] 月別履歴情報(当月) attr_reader :current # @return [History] 月別履歴情報(影響を与えた月) attr_reader :parent def initialize(current: History.new, parent: History.new) @current = current @parent = parent end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems