There are only two ways to tell somebody thanks: Kudos and Marked Solutions Unofficial Forum Rules and Guidelines "Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
no it is just the type to cast to. thy typecast only tells the compiler that from that moment on the value is to be seen as the given type. if the type is not compatible I don't know what it will do. In C it can crash.
WARNING it converts it at byte level not value level. so casting an int to a double will not give you the same value.
Typecasts are some of the most powerful programmers tools. ( and with grate power comes grate responsibility ) use with care.
Which concept? The Type Cast? The Type Cast just changes how the raw binary data is interpreted. In this case, the data in the string is being reinterpreted as a byte array (U8). This is the same thing as using the String To Byte Array function.
There are only two ways to tell somebody thanks: Kudos and Marked Solutions Unofficial Forum Rules and Guidelines "Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
No. The Equal is comparing the data in the arrays. It was set to compare Aggregates, which returns a single boolean for if the entire arrays were the same. You can also setup the equal to compare Elements, which will return an array of booleans indicating if the corresponding elements were the same.
There are only two ways to tell somebody thanks: Kudos and Marked Solutions Unofficial Forum Rules and Guidelines "Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5