Hello, I was going to use the maximum amount for an int32 instead of typing a large number and I found multiple maximum int32 macros. I wanted to ask if there is a difference between them or is there a specific one that Epic recommends to use (and hopefully why)? I listed the max int32’s that I found and what each one has in its () but this is kinda the same for any of the other max int values. I appreciate any answers on this
-MAX_int32 ((int32) 0x7fffffff)
-MAXINT32 ((INT32)(MAXUINT32 >> 1))
-INT32_MAX (2147483647i32) This one didn’t have it in () but thats what showed up as the description
-INT_FAST32_MAX (INT32_MAX)
This had the same case as above and is pretty much just using that macro instead…