-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathPrintTestTypes.swift
157 lines (117 loc) · 2.7 KB
/
PrintTestTypes.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
public protocol ProtocolUnrelatedToPrinting {}
public struct StructPrintable : CustomStringConvertible,
ProtocolUnrelatedToPrinting {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var description: String {
return "►\(x)◀︎"
}
}
public struct LargeStructPrintable : CustomStringConvertible,
ProtocolUnrelatedToPrinting {
let a: Int
let b: Int
let c: Int
let d: Int
public init(_ a: Int, _ b: Int, _ c: Int, _ d: Int) {
self.a = a
self.b = b
self.c = c
self.d = d
}
public var description: String {
return "<\(a) \(b) \(c) \(d)>"
}
}
public struct StructDebugPrintable : CustomDebugStringConvertible {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var debugDescription: String {
return "►\(x)◀︎"
}
}
public struct StructVeryPrintable : CustomStringConvertible,
CustomDebugStringConvertible, ProtocolUnrelatedToPrinting {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var description: String {
return "<description: \(x)>"
}
public var debugDescription: String {
return "<debugDescription: \(x)>"
}
}
public struct EmptyStructWithoutDescription {
public init() {}
}
public struct WithoutDescription {
let x: Int
public init(_ x: Int) {
self.x = x
}
}
public struct ValuesWithoutDescription<T, U, V> {
let t: T
let u: U
let v: V
public init(_ t: T, _ u: U, _ v: V) {
self.t = t
self.u = u
self.v = v
}
}
public class ClassPrintable : CustomStringConvertible,
ProtocolUnrelatedToPrinting {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var description: String {
return "►\(x)◀︎"
}
}
public class ClassVeryPrintable : CustomStringConvertible,
CustomDebugStringConvertible, ProtocolUnrelatedToPrinting {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var description: String {
return "<description: \(x)>"
}
public var debugDescription: String {
return "<debugDescription: \(x)>"
}
}
public struct MyString : ExpressibleByStringLiteral,
ExpressibleByStringInterpolation {
public init(str: String) {
value = str
}
public var value: String
public init(unicodeScalarLiteral value: String) {
self.init(str: value)
}
public init(extendedGraphemeClusterLiteral value: String) {
self.init(str: value)
}
public init(stringLiteral value: String) {
self.init(str: value)
}
public init(stringInterpolation strings: MyString...) {
var result = ""
for s in strings {
result += s.value
}
self.init(str: result)
}
public init<T>(stringInterpolationSegment expr: T) {
self.init(str: "<segment " + String(describing: expr) + ">")
}
}