Class/Object

com.comcast.ip4s

Cidr

Related Docs: object Cidr | package ip4s

Permalink

final class Cidr[+A <: IpAddress] extends Product with Serializable

Classless Inter-Domain Routing address, which represents an IP address and its routing prefix.

Source
Cidr.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Cidr
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Cidr[A] to any2stringadd[Cidr[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Cidr[A], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Cidr[A] to ArrowAssoc[Cidr[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. val address: A

    Permalink

    IP address for which this CIDR refers to

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def canEqual(other: Any): Boolean

    Permalink
    Definition Classes
    Cidr → Equals
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def contains[AA >: A <: IpAddress]: (AA) ⇒ Boolean

    Permalink

    Returns a predicate which tests if the supplied address is in the range described by this CIDR.

    Returns a predicate which tests if the supplied address is in the range described by this CIDR.

    Example:
    1. scala> Cidr(ipv4"10.11.12.13", 8).contains(ipv4"10.100.100.100")
      res0: Boolean = true
      scala> Cidr(ipv4"10.11.12.13", 8).contains(ipv4"11.100.100.100")
      res1: Boolean = false
      scala> val x = Cidr(ipv6"2001:db8:abcd:12::", 96).contains
      scala> x(ipv6"2001:db8:abcd:12::5")
      res2: Boolean = true
      scala> x(ipv6"2001:db8::")
      res3: Boolean = false
  11. def copy[AA >: A <: IpAddress](address: AA = this.address, prefixBits: Int = this.prefixBits): Cidr[AA]

    Permalink
  12. def ensuring(cond: (Cidr[A]) ⇒ Boolean, msg: ⇒ Any): Cidr[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Cidr[A] to Ensuring[Cidr[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (Cidr[A]) ⇒ Boolean): Cidr[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Cidr[A] to Ensuring[Cidr[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ Any): Cidr[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Cidr[A] to Ensuring[Cidr[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): Cidr[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Cidr[A] to Ensuring[Cidr[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def equals(other: Any): Boolean

    Permalink
    Definition Classes
    Cidr → Equals → AnyRef → Any
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Cidr[A] to StringFormat[Cidr[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Permalink
    Definition Classes
    Cidr → AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def last: A

    Permalink

    Returns the last address in the range described by this CIDR.

    Returns the last address in the range described by this CIDR.

    Example:
    1. scala> Cidr(ipv4"10.11.12.13", 8).last
      res0: Ipv4Address = 10.255.255.255
      scala> Cidr(ipv6"2001:db8:abcd:12::", 96).last
      res1: Ipv6Address = 2001:db8:abcd:12::ffff:ffff
      scala> Cidr(ipv6"2001:db8:abcd:12::", 32).last
      res2: Ipv6Address = 2001:db8:ffff:ffff:ffff:ffff:ffff:ffff
  24. def mask: A

    Permalink

    Returns the routing mask.

    Returns the routing mask.

    Example:
    1. scala> Cidr(ipv4"10.11.12.13", 8).mask
      res0: Ipv4Address = 255.0.0.0
      scala> Cidr(ipv6"2001:db8:abcd:12::", 96).mask
      res1: Ipv6Address = ffff:ffff:ffff:ffff:ffff:ffff::
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def prefix: A

    Permalink

    Returns the routing prefix.

    Returns the routing prefix.

    Note: the routing prefix also serves as the first address in the range described by this CIDR.

    Example:
    1. scala> Cidr(ipv4"10.11.12.13", 8).prefix
      res0: Ipv4Address = 10.0.0.0
      scala> Cidr(ipv6"2001:db8:abcd:12::", 96).prefix
      res1: Ipv6Address = 2001:db8:abcd:12::
      scala> Cidr(ipv6"2001:db8:abcd:12::", 32).prefix
      res2: Ipv6Address = 2001:db8::
  29. val prefixBits: Int

    Permalink

    number of leading 1s in the routing mask

  30. def productArity: Int

    Permalink
    Definition Classes
    Cidr → Product
  31. def productElement(n: Int): Any

    Permalink
    Definition Classes
    Cidr → Product
  32. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  33. def productPrefix: String

    Permalink
    Definition Classes
    Product
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. def toString(): String

    Permalink
    Definition Classes
    Cidr → AnyRef → Any
  36. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def [B](y: B): (Cidr[A], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Cidr[A] to ArrowAssoc[Cidr[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Cidr[A] to any2stringadd[Cidr[A]]

Inherited by implicit conversion StringFormat from Cidr[A] to StringFormat[Cidr[A]]

Inherited by implicit conversion Ensuring from Cidr[A] to Ensuring[Cidr[A]]

Inherited by implicit conversion ArrowAssoc from Cidr[A] to ArrowAssoc[Cidr[A]]

Ungrouped