Files
onepilot/starpilot/third_party/h3/api/numpy_int/_convert.py
T
firestar5683 3d8af2361e Rename
2026-03-27 18:05:44 -05:00

16 lines
288 B
Python

def _in_scalar(x):
return x
_out_scalar = _in_scalar
def _in_collection(x):
import numpy as np
# array is copied only if dtype does not match
# `list`s should work, but not `set`s of integers
return np.asarray(x, dtype='uint64')
_out_collection = _in_collection