Giter VIP home page Giter VIP logo

Comments (2)

borkdude avatar borkdude commented on June 15, 2024 1

This is not a babashka-specific issue, this happens with JVM Clojure too:

$ clj -M ~/dev/scratch/dude.clj
Execution error (StackOverflowError) at (REPL:1).
null

Full report at:
/var/folders/j9/xmjlcym958b1fr0npsp9msvh0000gn/T/clojure-3220081919510037302.edn

It has to do with laziness. If you make your program strict, this won't happen:

(ns dude
  (:require [clojure.set :as set]))

(defn reduce-rows
  ([] nil)
  ([row1 row2]
   (mapv (fn [kv1 kv2]
          (if (set? kv1)
            (set/union kv1 #{kv2})
            (hash-set kv1 kv2)))
        row1 row2)))

(->> (take 100000 (repeat {:a 1 :b 2 :c "Hello world!"}))
     (reduce reduce-rows)
     count
     println)

It prints 3 in both JVM Clojure and bb.

from babashka.

ralcantaraperez avatar ralcantaraperez commented on June 15, 2024

Thank you very much for your quick response.

from babashka.

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.