mirror of
https://github.com/encounter/JSONAPI.git
synced 2026-03-30 11:18:38 -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
|
|
}
|
|
}
|