File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,20 @@ def get_type_result_resolver_function(self):
93
93
"""
94
94
return self .result_type_resolver_fn_
95
95
96
+ @property
97
+ def nin (self ):
98
+ """
99
+ Returns the number of arguments treated as inputs.
100
+ """
101
+ return 1
102
+
103
+ @property
104
+ def nout (self ):
105
+ """
106
+ Returns the number of arguments treated as outputs.
107
+ """
108
+ return 1
109
+
96
110
@property
97
111
def types (self ):
98
112
"""Returns information about types supported by
@@ -531,6 +545,20 @@ def get_type_promotion_path_acceptance_function(self):
531
545
"""
532
546
return self .acceptance_fn_
533
547
548
+ @property
549
+ def nin (self ):
550
+ """
551
+ Returns the number of arguments treated as inputs.
552
+ """
553
+ return 2
554
+
555
+ @property
556
+ def nout (self ):
557
+ """
558
+ Returns the number of arguments treated as outputs.
559
+ """
560
+ return 1
561
+
534
562
@property
535
563
def types (self ):
536
564
"""Returns information about types supported by
You can’t perform that action at this time.
0 commit comments