Example #1
0
static bool HHVM_METHOD(IntlCalendar, before, CObjRef other) {
  return intlcal_compare(this_, other, &icu::Calendar::before);
}
Example #2
0
static bool HHVM_METHOD(IntlCalendar, equals, CObjRef other) {
  return intlcal_compare(this_, other, &icu::Calendar::equals);
}
Example #3
0
static bool HHVM_METHOD(IntlCalendar, after, const Object& other) {
  return intlcal_compare(this_, other, &icu::Calendar::after);
}