aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.h
blob: 85e019715967a488db4bf2bc46f27e9e0a352074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import <Foundation/Foundation.h>

#import "Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h"

NS_ASSUME_NONNULL_BEGIN

// clang-format doesn't yet deal with generic parameters and categories :-(
// clang-format off
@interface FSTImmutableSortedDictionary<KeyType, __covariant ValueType> (Testing)

/** Converts the values of the dictionary to an array preserving order. */
- (NSArray<ValueType> *)values;

@end
// clang-format on

NS_ASSUME_NONNULL_END