-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPlaceholders.swift
More file actions
121 lines (90 loc) · 4.33 KB
/
Placeholders.swift
File metadata and controls
121 lines (90 loc) · 4.33 KB
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
//=----------------------------------------------------------------------------=
// This source file is part of the DiffableTextViews open source project.
//
// Copyright (c) 2022 Oscar Byström Ericsson
// Licensed under Apache License, Version 2.0
//
// See http://www.apache.org/licenses/LICENSE-2.0 for license information.
//=----------------------------------------------------------------------------=
//*============================================================================*
// MARK: * Placeholders
//*============================================================================*
public struct PatternTextPlaceholders: Equatable, ExpressibleByDictionaryLiteral {
@usableFromInline typealias Predicate = (Character) -> Bool
//=------------------------------------------------------------------------=
// MARK: State
//=------------------------------------------------------------------------=
@usableFromInline let option: Option
//=------------------------------------------------------------------------=
// MARK: Initializers
//=------------------------------------------------------------------------=
@inlinable public init() {
self.option = .none
}
@inlinable public init(_ character: Character, where predicate: @escaping (Character) -> Bool) {
self.option = .some(Some(base: (character, predicate)))
}
@inlinable public init(_ some: (Character, (Character) -> Bool)) {
self.option = .some(Some(base: some))
}
@inlinable public init(_ many: [Character: (Character) -> Bool]) {
self.option = .many(Many(base: many))
}
@inlinable public init(dictionaryLiteral elements: (Character, (Character) -> Bool)...) {
switch elements.count {
case 1: self.init(elements[0])
case 2...: self.init(Dictionary(elements, uniquingKeysWith: { $1 }))
default: self.init() }
}
//=------------------------------------------------------------------------=
// MARK: Accessors
//=------------------------------------------------------------------------=
@inlinable subscript(character: Character) -> Predicate? {
switch option {
case .some(let some): return some[character]
case .many(let many): return many[character]
case .none: return nil }
}
//*========================================================================*
// MARK: * Option [...]
//*========================================================================*
@usableFromInline enum Option: Equatable {
case none
case some(Some)
case many(Many)
}
//*========================================================================*
// MARK: * Some [...]
//*========================================================================*
@usableFromInline struct Some: Equatable {
//=--------------------------------------------------------------------=
@usableFromInline let base: (Character, Predicate)
//=--------------------------------------------------------------------=
@inlinable init(base: (Character, Predicate)) {
self.base = base
}
@inlinable subscript(character: Character) -> Predicate? {
base.0 == character ? base.1 : nil
}
@inlinable static func == (lhs: Self, rhs: Self) -> Bool {
lhs.base.0 == rhs.base.0
}
}
//*========================================================================*
// MARK: * Many [...]
//*========================================================================*
@usableFromInline struct Many: Equatable {
//=--------------------------------------------------------------------=
@usableFromInline let base: [Character: Predicate]
//=--------------------------------------------------------------------=
@inlinable init(base: [Character: Predicate]) {
self.base = base
}
@inlinable subscript(character: Character) -> Predicate? {
base[character]
}
@inlinable static func == (lhs: Self, rhs: Self) -> Bool {
lhs.base.keys == rhs.base.keys
}
}
}