Skip to content

Commit 55f9241

Browse files
committed
Namespaces
1 parent 45cc665 commit 55f9241

File tree

5 files changed

+12
-0
lines changed

5 files changed

+12
-0
lines changed

LowLevel/BitManip.scope

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
namespace LowLevel;
2+
13
/%
24
Converts @"num" into a 64 character binary number.
35

LowLevel/Floats.scope

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import "LowLevel/BitManip";
22

3+
namespace LowLevel;
4+
35
/%
46
Returns the exponent of @"d" as a raw int.
57
%/

Math/Core.scope

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
namespace Math;
2+
13
/%
24
@asm
35

Math/Factors.scope

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
namespace Math;
2+
13
/%
24
@unoptimized: This functions is slow for large values.
35
@complexity: O(sqrt(n))

Math/Rounding.scope

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import "LowLevel/Floats";
22

3+
namespace Math;
4+
5+
using LowLevel;
6+
37
/%
48
Rounds @"input" down to the nearest whole.
59

0 commit comments

Comments
 (0)