Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Elixxir dApps SDK Swift
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
Elixxir dApps SDK Swift
Commits
30cb7265
Commit
30cb7265
authored
2 years ago
by
Dariusz Rybicki
Browse files
Options
Downloads
Patches
Plain Diff
Add GetIdFromContact functor
parent
10b788a1
No related branches found
No related tags found
2 merge requests
!102
Release 1.0.0
,
!18
Update Bindings
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Sources/ElixxirDAppsSDK/GetIdFromContact.swift
+10
-12
10 additions, 12 deletions
Sources/ElixxirDAppsSDK/GetIdFromContact.swift
with
10 additions
and
12 deletions
Sources/ElixxirDAppsSDK/
Legacy/ContactIdProvider
.swift
→
Sources/ElixxirDAppsSDK/
GetIdFromContact
.swift
+
10
−
12
View file @
30cb7265
import
Bindings
import
XCTestDynamicOverlay
public
struct
ContactIdProvider
{
public
var
get
:
(
Data
)
throws
->
Data
public
struct
GetIdFromContact
{
public
var
run
:
(
Data
)
throws
->
Data
public
func
callAsFunction
(
contact
:
Data
)
throws
->
Data
{
try
get
(
contact
)
try
run
(
contact
)
}
}
extension
ContactIdProvider
{
public
static
let
live
=
ContactIdProvider
{
contact
in
extension
GetIdFromContact
{
public
static
let
live
=
GetIdFromContact
{
contact
in
var
error
:
NSError
?
let
id
=
BindingsGetIDFromContact
(
contact
,
&
error
)
if
let
error
=
error
{
...
...
@@ -22,11 +23,8 @@ extension ContactIdProvider {
}
}
#if DEBUG
extension
ContactIdProvider
{
public
static
let
failing
=
ContactIdProvider
{
_
in
struct
NotImplemented
:
Error
{}
throw
NotImplemented
()
}
extension
GetIdFromContact
{
public
static
let
unimplemented
=
GetIdFromContact
(
run
:
XCTUnimplemented
(
"
\(
Self
.
self
)
"
)
)
}
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment