UNPKG
nerdamer-ts
Version:
latest (1.2.0)
1.2.0
javascript light-weight symbolic math expression evaluator
nerdamer.com
mugabe/nerdamer
nerdamer-ts
/
dist
/
Functions
/
Core
/
matrix_vector
/
is_in.d.ts
9 lines
(8 loc)
•
229 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * *
@param
{
Matrix|Vector|Set|Collection
}
obj
*
@param
{
Symbol
}
item
*
@returns
{
Boolean
} */
export
function
is_in
(
obj
:
any
|
any
|
Set
<
any
> |
any
,
item
:
Symbol
):
boolean
;
import
{
Symbol
}
from
"../../../Types/Symbol"
;