lpw
2023-06-03 e0ec4235cc7b8d05ec1aaa414ec2d2cac798d74e
commit | author | age
e0ec42 1 /*
L 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
9 #import <CoreGraphics/CoreGraphics.h>
10 #import <Foundation/Foundation.h>
11
12 NS_ASSUME_NONNULL_BEGIN
13
14 @interface FBSDKMath : NSObject
15
16 - (instancetype)init NS_UNAVAILABLE;
17 + (instancetype)new NS_UNAVAILABLE;
18
19 + (CGSize)ceilForSize:(CGSize)value;
20 + (CGSize)floorForSize:(CGSize)value;
21 + (NSUInteger)hashWithInteger:(NSUInteger)value;
22 + (NSUInteger)hashWithIntegerArray:(NSUInteger *)values count:(NSUInteger)count;
23
24 @end
25
26 NS_ASSUME_NONNULL_END