Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make private some api #430

Merged
merged 1 commit into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions Sources/VergeNormalizationDerived/DispatcherType+.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ extension StoreType {

}

/**
The entrypoint to make Derived object from the storage
*/
public struct NormalizedStoragePath<
Store: DispatcherType,
_StorageSelector: StorageSelector
Expand Down Expand Up @@ -42,6 +45,9 @@ public struct NormalizedStoragePath<
}
}

/**
The entrypoint to make Derived object from the specific table.
*/
public struct NormalizedStorageTablePath<
Store: StoreType,
_StorageSelector: StorageSelector,
Expand Down Expand Up @@ -219,7 +225,7 @@ public struct NormalizedStorageTablePath<

extension StoreType {

public func derivedEntity<
fileprivate func derivedEntity<
_StorageSelector: StorageSelector,
_TableSelector: TableSelector
>(
Expand Down Expand Up @@ -258,7 +264,7 @@ extension StoreType {

}

public func derivedEntityNonNull<
fileprivate func derivedEntityNonNull<
_StorageSelector: StorageSelector,
_TableSelector: TableSelector
>(
Expand Down