What other programming languages could be said to implement "functional Object Oriented Programming" as does #RStats?
@brodriguesco #python is also both OOP and FP, and helps you doing a large proportion of things that you might be currently doing with R (using #pandas and #numpy)
@JaviAgua that’s not exactly what I meant; I’m not talking about the fact that R (or Python) is multi-paradigm, but that in R you can do something like print(x), and depending on the class of x, print will fetch the right method (by calling, say print.character or print.double or print.data.frame under the hood)
@brodriguesco @JaviAgua in python is possible to use @singledispatch @process.register but.... I don't think it is used very much.
@brodriguesco @JaviAgua
#julialang has multiple dispatch at its core. I recommend watching https://www.youtube.com/watch?v=kc9HwsxE1OY
The Unreasonable Effectiveness of Multiple Dispatch | Stefan Karpinski | JuliaCon 2019

YouTube