-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTraits.swift
50 lines (36 loc) · 1.84 KB
/
Traits.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
//=----------------------------------------------------------------------------=
// 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.
//=----------------------------------------------------------------------------=
import Foundation
//*============================================================================*
// MARK: * Traits x Standard
//*============================================================================*
public protocol _Standard {
//=------------------------------------------------------------------------=
// MARK: State
//=------------------------------------------------------------------------=
@inlinable var locale: Locale { get set }
//=------------------------------------------------------------------------=
// MARK: Initializers
//=------------------------------------------------------------------------=
@inlinable init(locale: Locale)
}
//*============================================================================*
// MARK: * Traits x Currency
//*============================================================================*
public protocol _Currency {
//=------------------------------------------------------------------------=
// MARK: State
//=------------------------------------------------------------------------=
@inlinable var locale: Locale { get set }
@inlinable var currencyCode: String { get }
//=------------------------------------------------------------------------=
// MARK: Initializers
//=------------------------------------------------------------------------=
@inlinable init(code: String, locale: Locale)
}