上の位の除去.
上の位の付加.
上の位の除去
Parameters:
日時要素の外部表現に対応する Array
Returns:
日時要素の内部表現に対応する Array
2143 2144 2145 2146 2147
# File 'lib/when_exe/coordinates.rb', line 2143 def _decode_upper_structure(source) date = source.dup date[0] -= @origin_of_MSC return date end
上の位の付加
2131 2132 2133 2134 2135
# File 'lib/when_exe/coordinates.rb', line 2131 def _encode_upper_structure(source) date = source.dup date[0] += @origin_of_MSC return date end