Skip to content

Instantly share code, notes, and snippets.

View LennyN95's full-sized avatar
💭
busy typing

Leonard Nürnberg LennyN95

💭
busy typing
View GitHub Profile
@LennyN95
LennyN95 / preset.swift
Last active March 20, 2021 04:06
A preset value wrapper that allows for modifications but maintains specific user modifications over the preset value.
//
// preset.swift
//
// Created by Leonard Nürnberg on 10.10.20.
// Copyright © 2020 Leonard Nürnberg. All rights reserved.
//
struct Preset<Value> {
private(set) var presetValue: Value
private var definedValue: Value?