mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
45e2941367
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
52 lines
980 B
Plaintext
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];
|
|
}
|