All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gw.util.time.HourMinuteAmPm.gs Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
package gw.util.time

class HourMinuteAmPm implements ITimeOfDay {
  final var _hour: Integer as Hour
  final var _min: Integer as Min
  final var _amPm: AmPm as AmPm

  construct( amPm: AmPm, hour: Integer, min: Integer ) {
    _amPm = amPm
    _hour = hour
    _min = min
  }
  
  @BinderSeparators( :required = {":"} )
  function postfixBind( comp: Integer ) : HourMinuteSecondAmPm {
    return new( _amPm, comp, _hour, _min )
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy