MCPcopy Create free account
hub / github.com/numpy/numpy / issequence

Function issequence

numpy/ma/extras.py:41–46  ·  view source on GitHub ↗

Is seq a sequence (ndarray, list or tuple)?

(seq)

Source from the content-addressed store, hash-verified

39
40
41def issequence(seq):
42 """
43 Is seq a sequence (ndarray, list or tuple)?
44
45 """
46 return isinstance(seq, (ndarray, tuple, list))
47
48
49def count_masked(arr, axis=None):

Callers 1

__call__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected