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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// Copyright © 2018–2019 Trevor Spiteri

// This library is free software: you can redistribute it and/or
// modify it under the terms of either
//
//   * the Apache License, Version 2.0 or
//   * the MIT License
//
// at your option.
//
// You should have recieved copies of the Apache License and the MIT
// License along with the library. If not, see
// <https://www.apache.org/licenses/LICENSE-2.0> and
// <https://opensource.org/licenses/MIT>.

macro_rules! fixed_deprecated {
    ($Fixed:ident($Inner:ty)) => {
        /// Creates a fixed-point number from another number.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `from_num`")]
        pub fn from_fixed<Src: ToFixed>(src: Src) -> $Fixed<Frac> {
            Self::from_num(src)
        }

        /// Converts a fixed-point number to another number.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `to_num`")]
        pub fn to_fixed<Dst: FromFixed>(self) -> Dst {
            self.to_num()
        }

        /// Creates a fixed-point number from another number.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `from_num`")]
        pub fn from_int<Src: ToFixed>(src: Src) -> $Fixed<Frac> {
            Self::from_num(src)
        }

        /// Converts a fixed-point number to another number.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `to_num`")]
        pub fn to_int<Dst: FromFixed>(self) -> Dst {
            self.to_num()
        }

        /// Creates a fixed-point number from another number.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `from_num`")]
        pub fn from_float<Src: ToFixed>(src: Src) -> $Fixed<Frac> {
            Self::from_num(src)
        }

        /// Converts a fixed-point number to another number.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `to_num`")]
        pub fn to_float<Dst: FromFixed>(self) -> Dst {
            self.to_num()
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `checked_from_num`")]
        pub fn checked_from_fixed<Src: ToFixed>(src: Src) -> Option<$Fixed<Frac>> {
            Self::checked_from_num(src)
        }

        /// Converts a fixed-point number to another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `checked_to_num`")]
        pub fn checked_to_fixed<Dst: FromFixed>(self) -> Option<Dst> {
            self.checked_to_num()
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `checked_from_num`")]
        pub fn checked_from_int<Src: ToFixed>(src: Src) -> Option<$Fixed<Frac>> {
            Self::checked_from_num(src)
        }

        /// Converts a fixed-point number to another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `checked_to_num`")]
        pub fn checked_to_int<Dst: FromFixed>(self) -> Option<Dst> {
            self.checked_to_num()
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `checked_from_num`")]
        pub fn checked_from_float<Src: ToFixed>(src: Src) -> Option<$Fixed<Frac>> {
            Self::checked_from_num(src)
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `saturating_from_num`")]
        pub fn saturating_from_fixed<Src: ToFixed>(src: Src) -> $Fixed<Frac> {
            Self::saturating_from_num(src)
        }

        /// Converts a fixed-point number to another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `saturating_to_num`")]
        pub fn saturating_to_fixed<Dst: FromFixed>(self) -> Dst {
            self.saturating_to_num()
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `saturating_from_num`")]
        pub fn saturating_from_int<Src: ToFixed>(src: Src) -> $Fixed<Frac> {
            Self::saturating_from_num(src)
        }

        /// Converts a fixed-point number to another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `saturating_to_num`")]
        pub fn saturating_to_int<Dst: FromFixed>(self) -> Dst {
            self.saturating_to_num()
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `saturating_from_num`")]
        pub fn saturating_from_float<Src: ToFixed>(src: Src) -> $Fixed<Frac> {
            Self::saturating_from_num(src)
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `wrapping_from_num`")]
        pub fn wrapping_from_fixed<Src: ToFixed>(src: Src) -> $Fixed<Frac> {
            Self::wrapping_from_num(src)
        }

        /// Converts a fixed-point number to another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `wrapping_to_num`")]
        pub fn wrapping_to_fixed<Dst: FromFixed>(self) -> Dst {
            self.wrapping_to_num()
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `wrapping_from_num`")]
        pub fn wrapping_from_int<Src: ToFixed>(src: Src) -> $Fixed<Frac> {
            Self::wrapping_from_num(src)
        }

        /// Converts a fixed-point number to another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `wrapping_to_num`")]
        pub fn wrapping_to_int<Dst: FromFixed>(self) -> Dst {
            self.wrapping_to_num()
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `wrapping_from_num`")]
        pub fn wrapping_from_float<Src: ToFixed>(src: Src) -> $Fixed<Frac> {
            Self::wrapping_from_num(src)
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `overflowing_from_num`")]
        pub fn overflowing_from_fixed<Src: ToFixed>(src: Src) -> ($Fixed<Frac>, bool) {
            Self::overflowing_from_num(src)
        }

        /// Converts a fixed-point number to another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `overflowing_to_num`")]
        pub fn overflowing_to_fixed<Dst: FromFixed>(self) -> (Dst, bool) {
            self.overflowing_to_num()
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `overflowing_from_num`")]
        pub fn overflowing_from_int<Src: ToFixed>(src: Src) -> ($Fixed<Frac>, bool) {
            Self::overflowing_from_num(src)
        }

        /// Converts a fixed-point number to another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `overflowing_to_num`")]
        pub fn overflowing_to_int<Dst: FromFixed>(self) -> (Dst, bool) {
            self.overflowing_to_num()
        }

        /// Creates a fixed-point number from another number if it fits.
        #[inline]
        #[deprecated(since = "0.4.2", note = "replaced by `overflowing_from_num`")]
        pub fn overflowing_from_float<Src: ToFixed>(src: Src) -> ($Fixed<Frac>, bool) {
            Self::overflowing_from_num(src)
        }
    };
}