Skip to content

Instantly share code, notes, and snippets.

@Akira13641
Last active April 2, 2019 18:29
Show Gist options
  • Save Akira13641/058ca980b9f564bd33e797ae5aed7b7c to your computer and use it in GitHub Desktop.
Save Akira13641/058ca980b9f564bd33e797ae5aed7b7c to your computer and use it in GitHub Desktop.
This seems more reasonable
enum Month { Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec }
enum Order { LT, EQ, GT }
function compareMonth(m1: Month, m2: Month): Order {
switch ([m1, m2]) {
case [Month.Jan, Month.Jan]: {
return Order.EQ;
}
case [Month.Jan, undefined]: {
return Order.LT;
}
case [Month.Feb, Month.Jan]: {
return Order.GT;
}
case [Month.Feb, Month.Feb]: {
return Order.EQ;
}
case [Month.Feb, undefined]: {
return Order.LT;
}
case [Month.Mar, Month.Jan]: {
return Order.GT;
}
case [Month.Mar, Month.Feb]: {
return Order.GT;
}
case [Month.Mar, Month.Mar]: {
return Order.EQ;
}
case [Month.Mar, undefined]: {
return Order.LT;
}
case [Month.Apr, Month.Jan]: {
return Order.GT;
}
case [Month.Apr, Month.Feb]: {
return Order.GT;
}
case [Month.Apr, Month.Mar]: {
return Order.GT;
}
case [Month.Apr, Month.Apr]: {
return Order.EQ;
}
case [Month.Apr, undefined]: {
return Order.LT;
}
case [Month.May, Month.Jan]: {
return Order.GT;
}
case [Month.May, Month.Feb]: {
return Order.GT;
}
case [Month.May, Month.Mar]: {
return Order.GT;
}
case [Month.May, Month.Apr]: {
return Order.GT;
}
case [Month.May, Month.May]: {
return Order.EQ;
}
case [Month.May, undefined]: {
return Order.LT;
}
case [Month.Jun, Month.Jan]: {
return Order.GT;
}
case [Month.Jun, Month.Feb]: {
return Order.GT;
}
case [Month.Jun, Month.Mar]: {
return Order.GT;
}
case [Month.Jun, Month.Apr]: {
return Order.GT;
}
case [Month.Jun, Month.May]: {
return Order.GT;
}
case [Month.Jun, Month.Jun]: {
return Order.EQ;
}
case [Month.Jun, undefined]: {
return Order.EQ;
}
case [Month.Jul, Month.Dec]: {
return Order.LT;
}
case [Month.Jul, Month.Nov]: {
return Order.LT;
}
case [Month.Jul, Month.Oct]: {
return Order.LT;
}
case [Month.Jul, Month.Sep]: {
return Order.LT;
}
case [Month.Jul, Month.Aug]: {
return Order.LT;
}
case [Month.Jul, Month.Jul]: {
return Order.EQ;
}
case [Month.Jul, undefined]: {
return Order.GT;
}
case [Month.Aug, Month.Dec]: {
return Order.LT;
}
case [Month.Aug, Month.Nov]: {
return Order.LT;
}
case [Month.Aug, Month.Oct]: {
return Order.LT;
}
case [Month.Aug, Month.Sep]: {
return Order.LT;
}
case [Month.Aug, Month.Aug]: {
return Order.EQ;
}
case [Month.Aug, undefined]: {
return Order.GT;
}
case [Month.Sep, Month.Dec]: {
return Order.LT;
}
case [Month.Sep, Month.Nov]: {
return Order.LT;
}
case [Month.Sep, Month.Oct]: {
return Order.LT;
}
case [Month.Sep, Month.Sep]: {
return Order.EQ;
}
case [Month.Sep, undefined]: {
return Order.GT;
}
case [Month.Oct, Month.Dec]: {
return Order.LT;
}
case [Month.Oct, Month.Nov]: {
return Order.LT;
}
case [Month.Oct, Month.Oct]: {
return Order.EQ;
}
case [Month.Oct, undefined]: {
return Order.GT;
}
case [Month.Nov, Month.Dec]: {
return Order.LT;
}
case [Month.Nov, Month.Nov]: {
return Order.EQ;
}
case [Month.Nov, undefined]: {
return Order.GT;
}
case [Month.Dec, Month.Dec]: {
return Order.EQ;
}
case [Month.Dec, undefined]: {
return Order.GT;
}
default: {
return Order.LT;
}
}
}
"use strict";
var Month;
(function (Month) {
Month[Month["Jan"] = 0] = "Jan";
Month[Month["Feb"] = 1] = "Feb";
Month[Month["Mar"] = 2] = "Mar";
Month[Month["Apr"] = 3] = "Apr";
Month[Month["May"] = 4] = "May";
Month[Month["Jun"] = 5] = "Jun";
Month[Month["Jul"] = 6] = "Jul";
Month[Month["Aug"] = 7] = "Aug";
Month[Month["Sep"] = 8] = "Sep";
Month[Month["Oct"] = 9] = "Oct";
Month[Month["Nov"] = 10] = "Nov";
Month[Month["Dec"] = 11] = "Dec";
})(Month || (Month = {}));
var Order;
(function (Order) {
Order[Order["LT"] = 0] = "LT";
Order[Order["EQ"] = 1] = "EQ";
Order[Order["GT"] = 2] = "GT";
})(Order || (Order = {}));
function compareMonth(m1, m2) {
switch ([m1, m2]) {
case [Month.Jan, Month.Jan]: {
return Order.EQ;
}
case [Month.Jan, undefined]: {
return Order.LT;
}
case [Month.Feb, Month.Jan]: {
return Order.GT;
}
case [Month.Feb, Month.Feb]: {
return Order.EQ;
}
case [Month.Feb, undefined]: {
return Order.LT;
}
case [Month.Mar, Month.Jan]: {
return Order.GT;
}
case [Month.Mar, Month.Feb]: {
return Order.GT;
}
case [Month.Mar, Month.Mar]: {
return Order.EQ;
}
case [Month.Mar, undefined]: {
return Order.LT;
}
case [Month.Apr, Month.Jan]: {
return Order.GT;
}
case [Month.Apr, Month.Feb]: {
return Order.GT;
}
case [Month.Apr, Month.Mar]: {
return Order.GT;
}
case [Month.Apr, Month.Apr]: {
return Order.EQ;
}
case [Month.Apr, undefined]: {
return Order.LT;
}
case [Month.May, Month.Jan]: {
return Order.GT;
}
case [Month.May, Month.Feb]: {
return Order.GT;
}
case [Month.May, Month.Mar]: {
return Order.GT;
}
case [Month.May, Month.Apr]: {
return Order.GT;
}
case [Month.May, Month.May]: {
return Order.EQ;
}
case [Month.May, undefined]: {
return Order.LT;
}
case [Month.Jun, Month.Jan]: {
return Order.GT;
}
case [Month.Jun, Month.Feb]: {
return Order.GT;
}
case [Month.Jun, Month.Mar]: {
return Order.GT;
}
case [Month.Jun, Month.Apr]: {
return Order.GT;
}
case [Month.Jun, Month.May]: {
return Order.GT;
}
case [Month.Jun, Month.Jun]: {
return Order.EQ;
}
case [Month.Jun, undefined]: {
return Order.EQ;
}
case [Month.Jul, Month.Dec]: {
return Order.LT;
}
case [Month.Jul, Month.Nov]: {
return Order.LT;
}
case [Month.Jul, Month.Oct]: {
return Order.LT;
}
case [Month.Jul, Month.Sep]: {
return Order.LT;
}
case [Month.Jul, Month.Aug]: {
return Order.LT;
}
case [Month.Jul, Month.Jul]: {
return Order.EQ;
}
case [Month.Jul, undefined]: {
return Order.GT;
}
case [Month.Aug, Month.Dec]: {
return Order.LT;
}
case [Month.Aug, Month.Nov]: {
return Order.LT;
}
case [Month.Aug, Month.Oct]: {
return Order.LT;
}
case [Month.Aug, Month.Sep]: {
return Order.LT;
}
case [Month.Aug, Month.Aug]: {
return Order.EQ;
}
case [Month.Aug, undefined]: {
return Order.GT;
}
case [Month.Sep, Month.Dec]: {
return Order.LT;
}
case [Month.Sep, Month.Nov]: {
return Order.LT;
}
case [Month.Sep, Month.Oct]: {
return Order.LT;
}
case [Month.Sep, Month.Sep]: {
return Order.EQ;
}
case [Month.Sep, undefined]: {
return Order.GT;
}
case [Month.Oct, Month.Dec]: {
return Order.LT;
}
case [Month.Oct, Month.Nov]: {
return Order.LT;
}
case [Month.Oct, Month.Oct]: {
return Order.EQ;
}
case [Month.Oct, undefined]: {
return Order.GT;
}
case [Month.Nov, Month.Dec]: {
return Order.LT;
}
case [Month.Nov, Month.Nov]: {
return Order.EQ;
}
case [Month.Nov, undefined]: {
return Order.GT;
}
case [Month.Dec, Month.Dec]: {
return Order.EQ;
}
case [Month.Dec, undefined]: {
return Order.GT;
}
default: {
return Order.LT;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment