FBSDKMath.h 650 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. #import <CoreGraphics/CoreGraphics.h>
  9. #import <Foundation/Foundation.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface FBSDKMath : NSObject
  12. - (instancetype)init NS_UNAVAILABLE;
  13. + (instancetype)new NS_UNAVAILABLE;
  14. + (CGSize)ceilForSize:(CGSize)value;
  15. + (CGSize)floorForSize:(CGSize)value;
  16. + (NSUInteger)hashWithInteger:(NSUInteger)value;
  17. + (NSUInteger)hashWithIntegerArray:(NSUInteger *)values count:(NSUInteger)count;
  18. @end
  19. NS_ASSUME_NONNULL_END