1

我不知道如何使用 s/either 或 s/conditional 作为输入列表的一部分。想做这样的事情:

(s/defn parse-int :- s/Int
  [input :- ; either s/Int or s/Str]
    ; if s/Int
    input
    ; if s/Str
    (read-string input)
))
4

1 回答 1

2
(sc/defn parse-int :- sc/Str
    [input :- (sc/cond-pre sc/Int sc/Str)]
    (if (string? input) "a string" "not a string"))

(parse-int 34545) ; "not a string"
(parse-int "34545") ; "a string"

您也可以使用either,但已弃用。

于 2019-05-31T04:27:23.233 回答