-
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.
Merge pull request #128 from tayloraswift/0.16
0.16
- Loading branch information
Showing
33 changed files
with
715 additions
and
402 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,2 +1,2 @@ | ||
Dianna <kelvin13ma@gmail.com> | ||
Dianna <mdianna1989@gmail.com> | ||
Dianna Ma <kelvin13ma@gmail.com> | ||
Dianna Ma <mdianna1989@gmail.com> |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
the `swift-mongodb` package was created by Dianna Ma (@taylorswift), Joannis Orlandos, and Robbert Brandsma. | ||
|
||
you are welcome to contribute to this project at: | ||
|
||
https://github.com/tayloraswift/swift-mongodb | ||
|
||
we do not maintain any other mirrors of this repository, and such | ||
forks of this repository may not carry the most up-to-date code. | ||
|
||
contributors: | ||
|
||
1. Dianna Ma (@taylorswift, 2021–24) | ||
2. Joannis Orlandos (2016–22) | ||
3. Robbert Brandsma (2016–22) |
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
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
2 changes: 2 additions & 0 deletions
2
...Decoding/Legacy/BSON.AnyValue (ext).swift → Sources/BSONLegacy/BSON.AnyValue (ext).swift
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,3 +1,5 @@ | ||
import BSON | ||
|
||
extension BSON.AnyValue:Decoder | ||
{ | ||
@inlinable public | ||
|
4 changes: 3 additions & 1 deletion
4
...ding/Legacy/BSON.KeyedDecoder.Super.swift → .../BSONLegacy/BSON.KeyedDecoder.Super.swift
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
2 changes: 2 additions & 0 deletions
2
...ding/Legacy/BSON.SingleValueDecoder.swift → .../BSONLegacy/BSON.SingleValueDecoder.swift
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
14 changes: 8 additions & 6 deletions
14
...ng/Legacy/BSON.UnkeyedDecoder.Index.swift → ...SONLegacy/BSON.UnkeyedDecoder.Index.swift
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
2 changes: 2 additions & 0 deletions
2
...Decoding/Legacy/BSON.UnkeyedDecoder.swift → Sources/BSONLegacy/BSON.UnkeyedDecoder.swift
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,3 +1,5 @@ | ||
import BSON | ||
|
||
extension BSON | ||
{ | ||
struct UnkeyedDecoder | ||
|
4 changes: 2 additions & 2 deletions
4
...s/BSONDecoding/Legacy/DecodingError.swift → Sources/BSONLegacy/DecodingError (ext).swift
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
8 changes: 8 additions & 0 deletions
8
Sources/MongoBuiltins/Documents/Predicate/Mongo.PredicateEncodable.swift
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
extension Mongo | ||
{ | ||
public | ||
protocol PredicateEncodable | ||
{ | ||
func encode(to predicate:inout PredicateEncoder) | ||
} | ||
} |
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
8 changes: 8 additions & 0 deletions
8
Sources/MongoBuiltins/Documents/Projection/Mongo.ProjectionEncodable.swift
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
extension Mongo | ||
{ | ||
public | ||
protocol ProjectionEncodable | ||
{ | ||
func encode(to projection:inout ProjectionEncoder) | ||
} | ||
} |
Oops, something went wrong.