Coder Social home page Coder Social logo

Comments (7)

ikitommi avatar ikitommi commented on June 11, 2024 1

fixed in #1000.

from malli.

stevebuik avatar stevebuik commented on June 11, 2024

thanks to chatgpt, here's the fdef equivalent for comparison

(s/def ::height int?)
(s/def ::min-height int?)
(s/def ::person (s/keys :req-un [::height]))
(s/def ::tall-people-args (s/keys :req-un [::min-height]))
(s/def ::tall-people-result (s/coll-of ::person :kind vector?))

(defn tall-people [args]
  (let [{:keys [min-height]} args]
    [{:height 200}
     {:height 150}]))

(s/fdef tall-people
        :args (s/cat :args ::tall-people-args)
        :ret (s/coll-of ::person :kind vector?)
        :fn (fn [{:keys [args ret]}]
              (let [{:keys [min-height]} (:args args)]
                (every? #(>= (:height %) min-height) ret))))

(stest/instrument)

(tall-people {:min-height 180})

although return values are not checked even when instrumented I believe

I hope Malli can be more terse. what other improvements can we make on this?

from malli.

ikitommi avatar ikitommi commented on June 11, 2024

this can be made to work:

(def Input [:map [:min-height :int]])

(defn guard [{:keys [input output]}]
  (every? #(>= (:height %) (:min-height input)) output))

(mx/defn kikka :- [:vector Input]
  {:guard guard}
  [_ :- Input]
  ;; body
  [{:height 200}
   {:height 150}])

from malli.

stevebuik avatar stevebuik commented on June 11, 2024

from malli.

knubie avatar knubie commented on June 11, 2024

I think this is related to / dup of #764

from malli.

allentiak avatar allentiak commented on June 11, 2024

It would be nice if something like this could work.
For this, named params are awesome.

(defn area-of-a-square
[len]
{:malli/schema [:=> [:catn [:len nat-int?]]
     [:catn [:area
              [:and
               nat-int?
               [:fn (fn [{:keys [area len]}]
                  (>= area len))]]]]]}
(* len len))

With clojure.spec, I would write it in this way:

;; len --> area
(defn area-of-square
  [len]
  (* len len))

(s/fdef area-of-square
  :args (s/cat :len nat-int?)
  :ret nat-int?
  :fn (fn [{:keys [ret len]}]
        (>= ret len))]]]]]}

from malli.

ikitommi avatar ikitommi commented on June 11, 2024

quick poke on this.

Screenshot 2024-01-24 at 19 00 01

from malli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.