;;; SPDX-License-Identifier: LGPL-3.0-or-later ;;; SPDX-FileCopyrightText: Copyright © 2010-2021 Tony Garnock-Jones #lang racket/base ;; "Instance" protocol for discriminating among ;; otherwise-indistinguishable entities. (provide (struct-out instance)) ;; (instance Any Any), assertion or message ;; ;; In cases where `spec` can have multiple instantiations, serves to ;; distinguish between them. Each `id` should be unique within its ;; scope. ;; (struct instance (id spec) #:prefab)