@stdlib/ndarray-index-modes
Advanced tools
| /** | ||
| * @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. | ||
| */ | ||
| #ifndef STDLIB_NDARRAY_INDEX_MODES_H | ||
| #define STDLIB_NDARRAY_INDEX_MODES_H | ||
| /** | ||
| * Enumeration of ndarray index modes. | ||
| */ | ||
| enum STDLIB_NDARRAY_INDEX_MODE { | ||
| STDLIB_NDARRAY_INDEX_ERROR = 1, | ||
| STDLIB_NDARRAY_INDEX_CLAMP = 2, | ||
| STDLIB_NDARRAY_INDEX_WRAP = 3 | ||
| }; | ||
| #endif // !STDLIB_NDARRAY_INDEX_MODES_H |
+1
-1
| { | ||
| "name": "@stdlib/ndarray-index-modes", | ||
| "version": "0.0.1", | ||
| "version": "0.0.2", | ||
| "description": "List of ndarray index modes.", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
49843
1.86%11
10%