RLMDecimal128.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 <Realm/RLMConstants.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  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. RLM_SWIFT_SENDABLE // immutable
  29. @interface RLMDecimal128 : NSObject <NSCopying>
  30. /// Creates a new zero-initialized decimal128.
  31. - (instancetype)init;
  32. /// Converts the given value to a RLMDecimal128.
  33. ///
  34. /// The following types can be converted to RLMDecimal128:
  35. /// - NSNumber
  36. /// - NSString
  37. /// - NSDecimalNumber
  38. ///
  39. /// Passing a value with a type not in this list is a fatal error. Passing a
  40. /// string which cannot be parsed as a valid Decimal128 is a fatal error.
  41. - (instancetype)initWithValue:(id)value;
  42. /// Converts the given number to a RLMDecimal128.
  43. - (instancetype)initWithNumber:(NSNumber *)number;
  44. /// Parses the given string to a RLMDecimal128.
  45. ///
  46. /// Returns a decimal where `isNaN` is `YES` if the string cannot be parsed as a decimal. `error` is never set
  47. /// and this will never actually return `nil`.
  48. - (nullable instancetype)initWithString:(NSString *)string error:(NSError **)error;
  49. /// Converts the given number to a RLMDecimal128.
  50. + (instancetype)decimalWithNumber:(NSNumber *)number;
  51. /// The minimum value for RLMDecimal128.
  52. @property (class, readonly, copy) RLMDecimal128 *minimumDecimalNumber NS_REFINED_FOR_SWIFT;
  53. /// The maximum value for RLMDecimal128.
  54. @property (class, readonly, copy) RLMDecimal128 *maximumDecimalNumber NS_REFINED_FOR_SWIFT;
  55. /// Convert this value to a double. This is a lossy conversion.
  56. @property (nonatomic, readonly) double doubleValue;
  57. /// Convert this value to a NSDecimal. This may be a lossy conversion.
  58. @property (nonatomic, readonly) NSDecimal decimalValue;
  59. /// Convert this value to a string.
  60. @property (nonatomic, readonly) NSString *stringValue;
  61. /// Gets if this Decimal128 represents a NaN value.
  62. @property (nonatomic, readonly) BOOL isNaN;
  63. /// The magnitude of this RLMDecimal128.
  64. @property (nonatomic, readonly) RLMDecimal128 *magnitude NS_REFINED_FOR_SWIFT;
  65. /// Replaces this RLMDecimal128 value with its additive inverse.
  66. - (void)negate;
  67. /// Adds the right hand side to the current value and returns the result.
  68. - (RLMDecimal128 *)decimalNumberByAdding:(RLMDecimal128 *)decimalNumber;
  69. /// Divides the right hand side to the current value and returns the result.
  70. - (RLMDecimal128 *)decimalNumberByDividingBy:(RLMDecimal128 *)decimalNumber;
  71. /// Subtracts the right hand side to the current value and returns the result.
  72. - (RLMDecimal128 *)decimalNumberBySubtracting:(RLMDecimal128 *)decimalNumber;
  73. /// Multiply the right hand side to the current value and returns the result.
  74. - (RLMDecimal128 *)decimalNumberByMultiplyingBy:(RLMDecimal128 *)decimalNumber;
  75. /// Comparision operator to check if the right hand side is greater than the current value.
  76. - (BOOL)isGreaterThan:(nullable RLMDecimal128 *)decimalNumber;
  77. /// Comparision operator to check if the right hand side is greater than or equal to the current value.
  78. - (BOOL)isGreaterThanOrEqualTo:(nullable RLMDecimal128 *)decimalNumber;
  79. /// Comparision operator to check if the right hand side is less than the current value.
  80. - (BOOL)isLessThan:(nullable RLMDecimal128 *)decimalNumber;
  81. /// Comparision operator to check if the right hand side is less than or equal to the current value.
  82. - (BOOL)isLessThanOrEqualTo:(nullable RLMDecimal128 *)decimalNumber;
  83. @end
  84. RLM_HEADER_AUDIT_END(nullability, sendability)