blob: cf1cc7792ceb53ec0168f43b09477fdab39e6687 [file] [edit]
// Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef OBJECTIVE_C_SRC_NS_NUMBER_H_
#define OBJECTIVE_C_SRC_NS_NUMBER_H_
#import <Foundation/Foundation.h>
@interface NSNumber (NSNumberIsFloat)
@property(readonly) bool isFloat;
@end
@interface NSNumber (NSNumberIsBool)
@property(readonly) bool isBool;
@end
#endif // OBJECTIVE_C_SRC_NS_NUMBER_H_