Ipv6Address
- Companion
- class
trait Ipv6AddressCompanionPlatform
class Object
trait Matchable
class Any
Value members
Methods
Parses an IPv6 address from a string in RFC4291 notation, returning
None if the string is not a valid IPv6 address.Constructs an IPv6 address from a 16-element byte array.
Returns
Returns
Some when array is exactly 16-bytes and None otherwise. def fromBytes(b0: Int, b1: Int, b2: Int, b3: Int, b4: Int, b5: Int, b6: Int, b7: Int, b8: Int, b9: Int, b10: Int, b11: Int, b12: Int, b13: Int, b14: Int, b15: Int): Ipv6Address
Constructs an address from the specified 16 bytes.
Each byte is represented as an
Int to avoid having to manually call .toByte on each value -- the toByte call is done inside this function.