Skip to content

Commit 282a3f6

Browse files
committed
Rename Functions.qs to HigherOrderFunctions.qs
1 parent c72ca5e commit 282a3f6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

QSharpMathUtils/qsharp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"files": [
55
"src/Main.qs",
66
"src/Complex.qs",
7-
"src/Functions.qs",
7+
"src/HigherOrderFunctions.qs",
88
"src/Matrices.qs",
99
"src/Vectors.qs",
1010
"src/Matrices/Conjugate.qs",

QSharpMathUtils/src/Functions.qs renamed to QSharpMathUtils/src/HigherOrderFunctions.qs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Functions {
1+
namespace HigherOrderFunctions {
22

33
function Curry2<'T, 'U, 'V>(f : ('T, 'U) -> 'V) : ('T -> 'U -> 'V) {
44
x -> y -> f(x, y)

QSharpMathUtils/src/Matrices/Conjugate.qs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Matrices.Conjugate {
44
import Std.Core;
55
import Complex.*;
66
import Vectors.*;
7-
import Functions.*;
7+
import HigherOrderFunctions.*;
88

99
function ConjugateVector(A : Complex[]) : Complex[] {
1010
Mapped(Conjugate, A)

QSharpMathUtils/src/Vectors.qs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace Vectors {
33
import Std.Arrays.*;
44
import Std.Diagnostics.*;
55
import Complex.*;
6-
import Functions.*;
6+
import HigherOrderFunctions.*;
77
import Matrices.Properties.*;
88

99
/// Multiply all the values of a vector of type 'T by a scalar of type 'T

0 commit comments

Comments
 (0)