RLMDecimal128.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 Realm Inc.
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing, software
  12. // distributed under the License is distributed on an "AS IS" BASIS,
  13. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. // See the License for the specific language governing permissions and
  15. // limitations under the License.
  16. //
  17. ////////////////////////////////////////////////////////////////////////////
  18. #import <Foundation/Foundation.h>
  19. NS_ASSUME_NONNULL_BEGIN
  20. /**
  21. A 128-bit IEEE 754-2008 decimal floating point number.
  22. This type is similar to Swift's built-in Decimal type, but allocates bits
  23. differently, resulting in a different representable range. (NS)Decimal stores a
  24. significand of up to 38 digits long and an exponent from -128 to 127, while
  25. this type stores up to 34 digits of significand and an exponent from -6143 to
  26. 6144.
  27. */
  28. @interface RLMDecimal128 : NSObject
  29. /// Creates a new zero-initialized decimal128.
  30. - (instancetype)init;
  31. /// Converts the given value to a RLMDecimal128.
  32. ///
  33. /// The following types can be converted to RLMDecimal128:
  34. /// - NSNumber
  35. /// - NSString
  36. /// - NSDecimalNumber
  37. ///
  38. /// Passing a value with a type not in this list is a fatal error. Passing a
  39. /// string which cannot be parsed as a valid Decimal128 is a fatal error.
  40. - (instancetype)initWithValue:(id)value;
  41. /// Converts the given number to a RLMDecimal128.
  42. - (instancetype)initWithNumber:(NSNumber *)number;
  43. /// Parses the given string to a RLMDecimal128.
  44. ///
  45. /// Returns a decimal where `isNaN` is `YES` if the string cannot be parsed as a decimal. `error` is never set
  46. /// and this will never actually return `nil`.
  47. - (nullable instancetype)initWithString:(NSString *)string error:(NSError **)error;
  48. /// Converts the given number to a RLMDecimal128.
  49. + (instancetype)decimalWithNumber:(NSNumber *)number;
  50. /// The minimum value for RLMDecimal128.
  51. @property (class, readonly, copy) RLMDecimal128 *minimumDecimalNumber NS_REFINED_FOR_SWIFT;
  52. /// The maximum value for RLMDecimal128.
  53. @property (class, readonly, copy) RLMDecimal128 *maximumDecimalNumber NS_REFINED_FOR_SWIFT;
  54. /// Convert this value to a double. This is a lossy conversion.
  55. @property (nonatomic, readonly) double doubleValue;
  56. /// Convert this value to a NSDecimal. This may be a lossy conversion.
  57. @property (nonatomic, readonly) NSDecimal decimalValue;
  58. /// Convert this value to a string.
  59. @property (nonatomic, readonly) NSString *stringValue;
  60. /// Gets if this Decimal128 represents a NaN value.
  61. @property (nonatomic, readonly) BOOL isNaN;
  62. /// The magnitude of this RLMDecimal128.
  63. @property (nonatomic, readonly) RLMDecimal128 *magnitude NS_REFINED_FOR_SWIFT;
  64. /// Replaces this RLMDecimal128 value with its additive inverse.
  65. - (void)negate;
  66. /// Adds the right hand side to the current value and returns the result.
  67. - (RLMDecimal128 *)decimalNumberByAdding:(RLMDecimal128 *)decimalNumber;
  68. /// Divides the right hand side to the current value and returns the result.
  69. - (RLMDecimal128 *)decimalNumberByDividingBy:(RLMDecimal128 *)decimalNumber;
  70. /// Subtracts the right hand side to the current value and returns the result.
  71. - (RLMDecimal128 *)decimalNumberBySubtracting:(RLMDecimal128 *)decimalNumber;
  72. /// Multiply the right hand side to the current value and returns the result.
  73. - (RLMDecimal128 *)decimalNumberByMultiplyingBy:(RLMDecimal128 *)decimalNumber;
  74. /// Comparision operator to check if the right hand side is greater than the current value.
  75. - (BOOL)isGreaterThan:(nullable RLMDecimal128 *)decimalNumber;
  76. /// Comparision operator to check if the right hand side is greater than or equal to the current value.
  77. - (BOOL)isGreaterThanOrEqualTo:(nullable RLMDecimal128 *)decimalNumber;
  78. /// Comparision operator to check if the right hand side is less than the current value.
  79. - (BOOL)isLessThan:(nullable RLMDecimal128 *)decimalNumber;
  80. /// Comparision operator to check if the right hand side is less than or equal to the current value.
  81. - (BOOL)isLessThanOrEqualTo:(nullable RLMDecimal128 *)decimalNumber;
  82. @end
  83. NS_ASSUME_NONNULL_END