Giter Site home page Giter Site logo

Comments (1)

oubiwann avatar oubiwann commented on August 15, 2024

Made some more progress on this tonight (see changes 7ea02cc and d218225). The following now works:

(defmulti area)
(defmulti perim)

(defmethod area 'triangle
  ((`#m(base ,b height ,h))
   (* b h (/ 1 2))))

(defmethod perim 'triangle
  ((`#m(base ,b height ,h))
   (+ b h (math:sqrt (+ (* b b)
                        (* h h))))))

(defmethod area 'circle
  ((`#m(diameter ,d))
    (area `#m(type circle radius ,(/ d 2))))
  ((`#m(radius ,r))
   (* (math:pi) r r)))

(defmethod perim 'circle
  ((`#m(diameter ,d))
    (perim `#m(type circle radius ,(/ d 2))))
  ((`#m(radius ,r))
    (* 2 (math:pi) r)))

With usage being simply this:

> (area #m(type triangle base 6 height 10))
30.0
> (perim #m(type triangle base 6 height 10))
27.6619037896906
> (area #m(type circle diameter 8))
50.26548245743669
> (perim #m(type circle diameter 8))
25.132741228718345

So far, the macros only support the rather trivial usage shown above, with the type hard-coded. The next steps are:

  1. Allow users to pass the attribute name in defmulti
  2. Support multiple attributes (for multiple dispatch)

from los.

Related Issues (8)

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.