Flag.kt 718 B

1234567891011121314151617181920212223242526272829303132333435
  1. package eu.kanade.domain.library.model
  2. interface Flag {
  3. val flag: Long
  4. }
  5. interface Mask {
  6. val mask: Long
  7. }
  8. interface FlagWithMask : Flag, Mask
  9. operator fun Long.contains(other: Flag): Boolean {
  10. return if (other is Mask) {
  11. other.flag == this and other.mask
  12. } else {
  13. other.flag == this
  14. }
  15. }
  16. operator fun Long.plus(other: Flag): Long {
  17. return if (other is Mask) {
  18. this and other.mask.inv() or (other.flag and other.mask)
  19. } else {
  20. this or other.flag
  21. }
  22. }
  23. operator fun Flag.plus(other: Flag): Long {
  24. return if (other is Mask) {
  25. this.flag and other.mask.inv() or (other.flag and other.mask)
  26. } else {
  27. this.flag or other.flag
  28. }
  29. }