Skip to content

Commit

Permalink
make Storable public
Browse files Browse the repository at this point in the history
  • Loading branch information
EdgarDegas committed Jun 13, 2021
1 parent adc7c6f commit 0e4085d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Delayout/Storable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

import UIKit

protocol Storable {
public protocol Storable {

}

extension Storable {
@discardableResult
func store<T>(as v: inout T) -> Self {
public func store<T>(as v: inout T) -> Self {
v = self as! T
return self
}
Expand Down

0 comments on commit 0e4085d

Please sign in to comment.