Files
react-native/Libraries/TypeSafety/RCTConvertHelpers.mm
T
Erich Graham 45e2941367 Remove folly import in GenerateModuleObjCpp
Summary:
Changelog:

[iOS][Changed]
Replaced folly::Optional with std::optional from C++17 in Objc module generator.

Reviewed By: philIip

Differential Revision: D32367103

fbshipit-source-id: f0d254c4add7d6d2e0bdbceb09a852b4a01ea8c7
2022-03-22 17:10:18 -07:00

52 lines
980 B
Plaintext

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import "RCTConvertHelpers.h"
#import <React/RCTConvert.h>
bool RCTBridgingToBool(id value)
{
return [RCTConvert BOOL:value] ? true : false;
}
std::optional<bool> RCTBridgingToOptionalBool(id value)
{
if (!RCTNilIfNull(value)) {
return {};
}
return RCTBridgingToBool(value);
}
NSString *RCTBridgingToString(id value)
{
return [RCTConvert NSString:RCTNilIfNull(value)];
}
NSString *RCTBridgingToOptionalString(id value)
{
return RCTBridgingToString(value);
}
std::optional<double> RCTBridgingToOptionalDouble(id value)
{
if (!RCTNilIfNull(value)) {
return {};
}
return RCTBridgingToDouble(value);
}
double RCTBridgingToDouble(id value)
{
return [RCTConvert double:value];
}
NSArray *RCTBridgingToArray(id value) {
return [RCTConvert NSArray:value];
}