mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
57 lines
1.3 KiB
Swift
57 lines
1.3 KiB
Swift
// Copyright (c) 2018-2020 XMLCoder contributors
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
//
|
|
// Created by Vincent Esche on 11/19/18.
|
|
//
|
|
|
|
struct KeyedBox {
|
|
typealias Key = String
|
|
typealias Attribute = SimpleBox
|
|
typealias Element = Box
|
|
|
|
typealias Attributes = KeyedStorage<Key, Attribute>
|
|
typealias Elements = KeyedStorage<Key, Element>
|
|
|
|
var elements = Elements()
|
|
var attributes = Attributes()
|
|
|
|
var unboxed: (elements: Elements, attributes: Attributes) {
|
|
return (
|
|
elements: elements,
|
|
attributes: attributes
|
|
)
|
|
}
|
|
|
|
var value: SimpleBox? {
|
|
return elements.values.first as? SimpleBox
|
|
}
|
|
}
|
|
|
|
extension KeyedBox {
|
|
init<E, A>(elements: E, attributes: A)
|
|
where E: Sequence, E.Element == (Key, Element),
|
|
A: Sequence, A.Element == (Key, Attribute)
|
|
{
|
|
let elements = Elements(elements)
|
|
let attributes = Attributes(attributes)
|
|
self.init(elements: elements, attributes: attributes)
|
|
}
|
|
}
|
|
|
|
extension KeyedBox: Box {
|
|
var isNull: Bool {
|
|
return false
|
|
}
|
|
|
|
var xmlString: String? {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
extension KeyedBox: CustomStringConvertible {
|
|
var description: String {
|
|
return "{attributes: \(attributes), elements: \(elements)}"
|
|
}
|
|
}
|