Comparison Fails?
-
What is
dataPart
? -
@clevername27 said in Comparison Fails?:
…but not this (Unknown function 'length'):
Show me a screenshot of where you're using it in your code?
I think the clue might be in the word "function".
-
-
Weird that it says function, I thought it was going to be a typo like
length()
but nope...One thing I've found very useful in HISE lately is type safety, it helps me avoid a lot of simple bugs. Try adding it to your function, that way it will alert you if at any time you are passing the wrong data type to the function.
inline function RestoreStateOfEQ(eqModule, dataPart: string) { // etc }
-
This post is deleted! -
@d-healey That did it! Thanks!!!!!
-
@clevername27 There's a good doc for it, and I have a video on the way
-
This post is deleted! -
@d-healey Of course you do.
-
C clevername27 marked this topic as a question
-
C clevername27 has marked this topic as solved
-
@d-healey Type safety. I can't believe I spend half of my time in the docs and missed this particular chapter
Thank you! -
@Matt_SF it's a fairly recent addition