If i console.log this
ABDKMath64x64.add(3, 2);
I get the result of BigNumber { value: "5" } which is correct.
But
ABDKMath64x64.mul(3, 2);
returns BigNumber { value: "0" }
and
ABDKMath64x64.div(3, 2);
returns BigNumber { value: "27670116110564327424" }
Why i cant get 6 for .mul and 1.5 for div? What am i missing?