Basically I have a Double defined in Scala and I'd like it in a binary representation. For example:
val myDouble: Double = 0
val myDoubleAs64BitString = "00000000"+
"00000000"+
"00000000"+
"00000000"+
"00000000"+
"00000000"+
"00000000"+
"00000000"
This may sound and look crazy but basically for what I'm doing it's not. I'm basically writing a Chess application and I need a decent way of getting feedback while testing bitboard representations.