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

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

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

class HourAmPm implements ITimeOfDay {
  final var _hour: Integer as Hour
  final var _amPm: AmPm as AmPm

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy