178 lines
4.6 KiB
JavaScript
178 lines
4.6 KiB
JavaScript
|
/**
|
||
|
* @license Apache-2.0
|
||
|
*
|
||
|
* Copyright (c) 2018 The Stdlib Authors.
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
/*
|
||
|
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
|
||
|
*/
|
||
|
|
||
|
// MODULES //
|
||
|
|
||
|
var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
|
||
|
|
||
|
|
||
|
// MAIN //
|
||
|
|
||
|
/**
|
||
|
* Top-level namespace.
|
||
|
*
|
||
|
* @namespace ns
|
||
|
*/
|
||
|
var ns = {};
|
||
|
|
||
|
/**
|
||
|
* @name isAllowedDataTypeCast
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-allowed-data-type-cast}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isAllowedDataTypeCast', require( './../../../base/assert/is-allowed-data-type-cast' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isBufferLengthCompatible
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-buffer-length-compatible}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isBufferLengthCompatible', require( './../../../base/assert/is-buffer-length-compatible' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isBufferLengthCompatibleShape
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-buffer-length-compatible-shape}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isBufferLengthCompatibleShape', require( './../../../base/assert/is-buffer-length-compatible-shape' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isCastingMode
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-casting-mode}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isCastingMode', require( './../../../base/assert/is-casting-mode' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isColumnMajor
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-column-major}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isColumnMajor', require( './../../../base/assert/is-column-major' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isColumnMajorContiguous
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-column-major-contiguous}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isColumnMajorContiguous', require( './../../../base/assert/is-column-major-contiguous' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isContiguous
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-contiguous}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isContiguous', require( './../../../base/assert/is-contiguous' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isDataType
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-data-type}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isDataType', require( './../../../base/assert/is-data-type' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isIndexMode
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-index-mode}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isIndexMode', require( './../../../base/assert/is-index-mode' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isOrder
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-order}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isOrder', require( './../../../base/assert/is-order' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isRowMajor
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-row-major}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isRowMajor', require( './../../../base/assert/is-row-major' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isRowMajorContiguous
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-row-major-contiguous}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isRowMajorContiguous', require( './../../../base/assert/is-row-major-contiguous' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isSafeDataTypeCast
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-safe-data-type-cast}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isSafeDataTypeCast', require( './../../../base/assert/is-safe-data-type-cast' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isSameKindDataTypeCast
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-same-kind-data-type-cast}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isSameKindDataTypeCast', require( './../../../base/assert/is-same-kind-data-type-cast' ) );
|
||
|
|
||
|
/**
|
||
|
* @name isSingleSegmentCompatible
|
||
|
* @memberof ns
|
||
|
* @readonly
|
||
|
* @type {Function}
|
||
|
* @see {@link module:@stdlib/ndarray/base/assert/is-single-segment-compatible}
|
||
|
*/
|
||
|
setReadOnly( ns, 'isSingleSegmentCompatible', require( './../../../base/assert/is-single-segment-compatible' ) );
|
||
|
|
||
|
|
||
|
// EXPORTS //
|
||
|
|
||
|
module.exports = ns;
|