auxiliary.go 127 B

1234567891011121314
  1. package rx
  2. type Pair struct {
  3. First Object
  4. Second Object
  5. }
  6. type Optional struct {
  7. HasValue bool
  8. Value Object
  9. }