Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Sources/ContainerizationExtras/IPv6Address.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@

/// Represents an IPv6 network address conforming to RFC 5952 and RFC 4291.
public struct IPv6Address: Sendable, Hashable, CustomStringConvertible, Equatable, Comparable, Codable {
@usableFromInline
internal let value: UInt128
public let value: UInt128

@usableFromInline
internal let zone: String?
public let zone: String?

/// Creates an IPv6Address by parsing a string representation.
///
Expand Down