Skip to content

Commit 7757e67

Browse files
authored
feat: add support for scalars in result_type
PR-URL: #873 Closes: #805 Reviewed-by: [email protected]
1 parent 640e6cd commit 7757e67

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

src/array_api_stubs/_draft/data_type_functions.py

+13-8
Original file line numberDiff line numberDiff line change
@@ -209,20 +209,25 @@ def isdtype(
209209
"""
210210

211211

212-
def result_type(*arrays_and_dtypes: Union[array, dtype]) -> dtype:
212+
def result_type(
213+
*arrays_and_dtypes: Union[array, int, float, complex, bool, dtype]
214+
) -> dtype:
213215
"""
214-
Returns the dtype that results from applying the type promotion rules (see :ref:`type-promotion`) to the arguments.
215-
216-
.. note::
217-
If provided mixed dtypes (e.g., integer and floating-point), the returned dtype will be implementation-specific.
216+
Returns the dtype that results from applying type promotion rules (see :ref:`type-promotion`) to the arguments.
218217
219218
Parameters
220219
----------
221-
arrays_and_dtypes: Union[array, dtype]
222-
an arbitrary number of input arrays and/or dtypes.
220+
arrays_and_dtypes: Union[array, int, float, complex, bool, dtype]
221+
an arbitrary number of input arrays, scalars, and/or dtypes.
223222
224223
Returns
225224
-------
226225
out: dtype
227-
the dtype resulting from an operation involving the input arrays and dtypes.
226+
the dtype resulting from an operation involving the input arrays, scalars, and/or dtypes.
227+
228+
Notes
229+
-----
230+
231+
- At least one argument must be an array or a dtype.
232+
- If provided array and/or dtype arguments having mixed data type kinds (e.g., integer and floating-point), the returned dtype is unspecified and is implementation-dependent.
228233
"""

0 commit comments

Comments
 (0)