mirror of
https://github.com/encounter/JSONAPI.git
synced 2026-07-10 12:18:40 -07:00
17 lines
268 B
Swift
17 lines
268 B
Swift
|
|
//
|
||
|
|
// Optional+AbstractWrapper.swift
|
||
|
|
// JSONAPITesting
|
||
|
|
//
|
||
|
|
// Created by Mathew Polzin on 11/15/19.
|
||
|
|
//
|
||
|
|
|
||
|
|
protocol _AbstractWrapper {
|
||
|
|
var abstractSelf: Any? { get }
|
||
|
|
}
|
||
|
|
|
||
|
|
extension Optional: _AbstractWrapper {
|
||
|
|
var abstractSelf: Any? {
|
||
|
|
return self
|
||
|
|
}
|
||
|
|
}
|