I am trying to create a unique integer representation of a string.
I wonder why the OOTB int component doesn’t work here, but the python one does.
is this a 32bit integer problem?
question_integer_limit.gh (7.6 KB)
I am trying to create a unique integer representation of a string.
I wonder why the OOTB int component doesn’t work here, but the python one does.
is this a 32bit integer problem?
question_integer_limit.gh (7.6 KB)
The integer parameter is a 32-bit integer. You need a 64-bit integer (the Python version automatically scales to as large as needed).