Skip to content

Instantly share code, notes, and snippets.

@dietercastel
Created June 19, 2021 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dietercastel/adb17720cec660b3648f8d75081a9163 to your computer and use it in GitHub Desktop.
Save dietercastel/adb17720cec660b3648f8d75081a9163 to your computer and use it in GitHub Desktop.
Naive throttling map function
function tmap(fn,arr,delay)
res = []
for a in arr
push!(res,fn(a))
sleep(delay)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment