-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4507ea7
commit 4407eb4
Showing
8 changed files
with
42 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.build | ||
.vscode | ||
.build.ssgc | ||
.github/mongonet/data* | ||
.vscode | ||
|
||
/Snippets/_Experiments |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
import Atomics | ||
import UnixTime | ||
|
||
#if swift(>=6.0) | ||
extension Days:@retroactive AtomicValue | ||
{ | ||
} | ||
#else | ||
extension Days:AtomicValue | ||
{ | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
import Atomics | ||
import UnixTime | ||
|
||
#if swift(>=6.0) | ||
extension Milliseconds:@retroactive AtomicValue | ||
{ | ||
} | ||
#else | ||
extension Milliseconds:AtomicValue | ||
{ | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
import Atomics | ||
import UnixTime | ||
|
||
#if swift(>=6.0) | ||
extension Minutes:@retroactive AtomicValue | ||
{ | ||
} | ||
#else | ||
extension Minutes:AtomicValue | ||
{ | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
import Atomics | ||
import UnixTime | ||
|
||
#if swift(>=6.0) | ||
extension Nanoseconds:@retroactive AtomicValue | ||
{ | ||
} | ||
#else | ||
extension Nanoseconds:AtomicValue | ||
{ | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
import Atomics | ||
import UnixTime | ||
|
||
#if swift(>=6.0) | ||
extension Seconds:@retroactive AtomicValue | ||
{ | ||
} | ||
#else | ||
extension Seconds:AtomicValue | ||
{ | ||
} | ||
#endif |