上の位の除去.
上の位の付加.
上の位の除去
Parameters:
日時要素の外部表現に対応する Array
Returns:
日時要素の内部表現に対応する Array
1793 1794 1795 1796 1797
# File 'lib/when_exe/coordinates.rb', line 1793 def _decode_upper_structure(source) date = source.dup date[0] -= @origin_of_MSC return date end
上の位の付加
1781 1782 1783 1784 1785
# File 'lib/when_exe/coordinates.rb', line 1781 def _encode_upper_structure(source) date = source.dup date[0] += @origin_of_MSC return date end