-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAliases.swift
36 lines (27 loc) · 1.47 KB
/
Aliases.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
//=----------------------------------------------------------------------------=
// 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: * Aliases
//*============================================================================*
public typealias NumberTextStyle<Value: _Value> =
Value.NumberTextGraph.Number where
Value.NumberTextGraph: _Numberable
public typealias NumberTextBounds <Value: _Input> = _Bounds <Value>
public typealias NumberTextPrecision<Value: _Input> = _Precision<Value>
//*============================================================================*
// MARK: * Aliases x Internal
//*============================================================================*
public typealias _FPRR = FloatingPointRoundingRule
public typealias _NFSC = NumberFormatStyleConfiguration
public typealias _CFSC = CurrencyFormatStyleConfiguration
public typealias _NFSC_SignDS = _NFSC.SignDisplayStrategy
public typealias _CFSC_SignDS = _CFSC.SignDisplayStrategy
public typealias _NFSC_SeparatorDS = _NFSC.DecimalSeparatorDisplayStrategy
public typealias _CFSC_SeparatorDS = _CFSC.DecimalSeparatorDisplayStrategy