···99public struct EncodingOptions {
1010 /// Force encoded maps to use string keys even when integer keys are available.
1111 public let forceStringKeys: Bool
1212-1212+1313 /// Methods for encoding dates.
1414 public enum DateStrategy {
1515 /// Encodes dates as `ISO8601` date strings under tag `0`.
+2-1
Sources/CBOR/MajorType.swift
···66//
7788/// Represents a major type as described by the CBOR specification.
99-@frozen public enum MajorType: UInt8, Sendable, Hashable, Equatable {
99+@frozen
1010+public enum MajorType: UInt8, Sendable, Hashable, Equatable {
1011 case uint = 0
1112 case nint = 1
1213 case bytes = 2