Skip to content

Instantly share code, notes, and snippets.

View delight-by's full-sized avatar

Alexander Lavrinovich delight-by

  • nugs.net
  • San Francisco, CA
View GitHub Profile
// a fancy syntax to filter enums
enum Enum: EquatableEnum {
case foo(Int)
case bar(String)
case qux(Int, String)
}
protocol EquatableEnum { }