diff --git a/ListableUI/Sources/ContentLayoutsStorage.swift b/ListableUI/Sources/ContentLayoutsStorage.swift index 7363efde4..af148f38d 100644 --- a/ListableUI/Sources/ContentLayoutsStorage.swift +++ b/ListableUI/Sources/ContentLayoutsStorage.swift @@ -8,21 +8,14 @@ import Foundation -public protocol ContentLayouts { - - -} - +/// +/// Underlying storage used in `ItemLayouts`, `HeaderFooterLayouts`, and `SectionLayouts`. +/// See those types for more information. +/// struct ContentLayoutsStorage { private var storage : [ObjectIdentifier:Any] = [:] - - public init( - _ configure : (inout Self) -> () = { _ in } - ) { - configure(&self) - } func get( _ valueType : ValueType.Type,