View ThrowOrDontWhatevs.swift
//: Playground - noun: a place where people can play | |
import Foundation | |
protocol CharacteristicValue { | |
func characteristicValue() throws -> Data | |
} | |
extension String: CharacteristicValue { |