Function type_of

Source
pub fn type_of<T>(_: &T) -> String
Expand description
type(a)

ยงUsage

use py_like::type_of; // This is even a test..
let a = 1.0;
println!("{}", type_of(&a));