Skip to content

Commit 986f1d2

Browse files
committed
Rename package and update paths
1 parent 706209f commit 986f1d2

32 files changed

Lines changed: 36 additions & 36 deletions

File tree

lib/node_modules/@stdlib/ndarray/base/assert/is-index-mode/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var modes = require( '@stdlib/ndarray/modes' );
23+
var modes = require( '@stdlib/ndarray/index-modes' );
2424

2525

2626
// VARIABLES //

lib/node_modules/@stdlib/ndarray/base/bind2vind/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <stdint.h>
2525
#include <math.h>
2626
#include <sys/time.h>
27-
#include "stdlib/ndarray/modes.h"
27+
#include "stdlib/ndarray/index_modes.h"
2828
#include "stdlib/ndarray/orders.h"
2929
#include "stdlib/ndarray/base/bind2vind.h"
3030

lib/node_modules/@stdlib/ndarray/base/bind2vind/include/stdlib/ndarray/base/bind2vind.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#define STDLIB_NDARRAY_BASE_BIND2VIND_H
2121

2222
#include <stdint.h>
23-
#include "stdlib/ndarray/modes.h"
23+
#include "stdlib/ndarray/index_modes.h"
2424
#include "stdlib/ndarray/orders.h"
2525

2626
/*

lib/node_modules/@stdlib/ndarray/base/bind2vind/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"libraries": [],
3434
"libpath": [],
3535
"dependencies": [
36-
"@stdlib/ndarray/modes",
36+
"@stdlib/ndarray/index-modes",
3737
"@stdlib/ndarray/orders"
3838
]
3939
}

lib/node_modules/@stdlib/ndarray/base/bind2vind/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include <stdint.h>
2020
#include <stdlib.h>
21-
#include "stdlib/ndarray/modes.h"
21+
#include "stdlib/ndarray/index_modes.h"
2222
#include "stdlib/ndarray/orders.h"
2323
#include "stdlib/ndarray/base/bind2vind.h"
2424

@@ -39,7 +39,7 @@
3939
* @return index
4040
*
4141
* @example
42-
* #include "stdlib/ndarray/modes.h"
42+
* #include "stdlib/ndarray/index_modes.h"
4343
* #include "stdlib/ndarray/orders.h"
4444
* #include "stdlib/ndarray/base/bind2vind.h"
4545
*

lib/node_modules/@stdlib/ndarray/base/ind/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <stdint.h>
2525
#include <math.h>
2626
#include <sys/time.h>
27-
#include "stdlib/ndarray/modes.h"
27+
#include "stdlib/ndarray/index_modes.h"
2828
#include "stdlib/ndarray/base/ind.h"
2929

3030
#define NAME "ind"

lib/node_modules/@stdlib/ndarray/base/ind/include/stdlib/ndarray/base/ind.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#define STDLIB_NDARRAY_BASE_IND_H
2121

2222
#include <stdint.h>
23-
#include "stdlib/ndarray/modes.h"
23+
#include "stdlib/ndarray/index_modes.h"
2424

2525
/*
2626
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.

lib/node_modules/@stdlib/ndarray/base/ind/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"dependencies": [
3636
"@stdlib/ndarray/base/clamp-index",
3737
"@stdlib/ndarray/base/wrap-index",
38-
"@stdlib/ndarray/modes"
38+
"@stdlib/ndarray/index-modes"
3939
]
4040
}
4141
]

lib/node_modules/@stdlib/ndarray/base/ind/src/main.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include <stdint.h>
2020
#include "stdlib/ndarray/base/clamp_index.h"
2121
#include "stdlib/ndarray/base/wrap_index.h"
22-
#include "stdlib/ndarray/modes.h"
22+
#include "stdlib/ndarray/index_modes.h"
2323
#include "stdlib/ndarray/base/ind.h"
2424

2525
/**
@@ -35,21 +35,21 @@
3535
* @return index
3636
*
3737
* @example
38-
* #include "stdlib/ndarray/modes.h"
38+
* #include "stdlib/ndarray/index_modes.h"
3939
* #include "stdlib/ndarray/base/ind.h"
4040
*
4141
* int64_t idx = stdlib_ndarray_ind( 10, 8, STDLIB_NDARRAY_INDEX_CLAMP );
4242
* // returns 8
4343
*
4444
* @example
45-
* #include "stdlib/ndarray/modes.h"
45+
* #include "stdlib/ndarray/index_modes.h"
4646
* #include "stdlib/ndarray/base/ind.h"
4747
*
4848
* int64_t idx = stdlib_ndarray_ind( 13, 10, STDLIB_NDARRAY_INDEX_WRAP );
4949
* // returns 2
5050
*
5151
* @example
52-
* #include "stdlib/ndarray/modes.h"
52+
* #include "stdlib/ndarray/index_modes.h"
5353
* #include "stdlib/ndarray/base/ind.h"
5454
*
5555
* int64_t idx = stdlib_ndarray_ind( 10, 8, STDLIB_NDARRAY_INDEX_ERROR );

lib/node_modules/@stdlib/ndarray/base/ind2sub/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <stdint.h>
2525
#include <math.h>
2626
#include <sys/time.h>
27-
#include "stdlib/ndarray/modes.h"
27+
#include "stdlib/ndarray/index_modes.h"
2828
#include "stdlib/ndarray/orders.h"
2929
#include "stdlib/ndarray/base/ind2sub.h"
3030

0 commit comments

Comments
 (0)