コード例 #1
0
ファイル: ext_icu_calendar.cpp プロジェクト: DirektSPEED/hhvm
static bool HHVM_METHOD(IntlCalendar, before, CObjRef other) {
  return intlcal_compare(this_, other, &icu::Calendar::before);
}
コード例 #2
0
ファイル: ext_icu_calendar.cpp プロジェクト: DirektSPEED/hhvm
static bool HHVM_METHOD(IntlCalendar, equals, CObjRef other) {
  return intlcal_compare(this_, other, &icu::Calendar::equals);
}
コード例 #3
0
ファイル: ext_icu_calendar.cpp プロジェクト: 191919/hhvm
static bool HHVM_METHOD(IntlCalendar, after, const Object& other) {
  return intlcal_compare(this_, other, &icu::Calendar::after);
}