上の位の除去.
上の位の付加.
上の位の除去
Parameters:
日時要素の外部表現に対応する Array
Returns:
日時要素の内部表現に対応する Array
2147 2148 2149 2150 2151
# File 'lib/when_exe/coordinates.rb', line 2147 def _decode_upper_structure(source) date = source.dup date[0] -= @origin_of_MSC return date end
上の位の付加
2135 2136 2137 2138 2139
# File 'lib/when_exe/coordinates.rb', line 2135 def _encode_upper_structure(source) date = source.dup date[0] += @origin_of_MSC return date end