File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 13
13
14
14
#import " MTMathList.h"
15
15
16
+ NS_ASSUME_NONNULL_BEGIN
17
+
16
18
FOUNDATION_EXPORT NSString *const MTSymbolMultiplication;
17
19
FOUNDATION_EXPORT NSString *const MTSymbolDivision;
18
20
FOUNDATION_EXPORT NSString *const MTSymbolFractionSlash;
@@ -120,7 +122,7 @@ FOUNDATION_EXPORT NSString *const MTSymbolDegree;
120
122
@note This is not an exact reverse of the above function. Some delimiters have two names (e.g.
121
123
`<` and `langle`) and this function always returns the shorter name.
122
124
*/
123
- + (NSString *) delimiterNameForBoundaryAtom : (MTMathAtom*) boundary ;
125
+ + (nullable NSString *) delimiterNameForBoundaryAtom : (MTMathAtom*) boundary ;
124
126
125
127
/* * Returns a font style associated with the name. If none is found returns NSNotFound. */
126
128
+ (MTFontStyle) fontStyleWithName : (NSString *) fontName ;
@@ -142,7 +144,7 @@ FOUNDATION_EXPORT NSString *const MTSymbolDegree;
142
144
@note The reason this function returns a `MTMathAtom` and not a `MTMathTable` is because some
143
145
matrix environments are have builtin delimiters added to the table and hence are returned as inner atoms.
144
146
*/
145
- + (MTMathAtom*) tableWithEnvironment : (nullable NSString *) env rows : (NSArray <NSArray<MTMathList*>*>*) rows error : (NSError **) error ;
147
+ + (nullable MTMathAtom*) tableWithEnvironment : (nullable NSString *) env rows : (NSArray <NSArray<MTMathList*>*>*) rows error : (NSError **) error ;
146
148
@end
147
149
148
-
150
+ NS_ASSUME_NONNULL_END
You can’t perform that action at this time.
0 commit comments