repl.txt (459B)
1 2 {{alias}}( value ) 3 Tests if a value is a DataView. 4 5 Parameters 6 ---------- 7 value: any 8 Value to test. 9 10 Returns 11 ------- 12 bool: boolean 13 Boolean indicating whether value is a DataView. 14 15 Examples 16 -------- 17 > var buf = new {{alias:@stdlib/array/buffer}}( 10 ); 18 > var bool = {{alias}}( new {{alias:@stdlib/array/dataview}}( buf ) ) 19 true 20 > bool = {{alias}}( [] ) 21 false 22 23 See Also 24 -------- 25