-
-
Save frenchy64/f2ab85d82000dbd0f96d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns typed.core | |
(:require [clojure.core.typed :as t])) | |
(t/ann-datatype Foo [fooName :- t/Str]) | |
(deftype Foo [fooName]) | |
(t/ann-datatype Bar [barName :- t/Str]) | |
(deftype Bar [barName]) | |
(t/ann theName [(t/U Foo Bar) -> t/Str]) | |
(defmulti theName class) | |
(defmethod theName Foo [^Foo f] (.fooName f)) | |
(defmethod theName Bar [^Bar f] (.barName f)) | |
(t/check-ns) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment