Hello,
Given the official documentation, there is no such method on PoolVector2Array.
However, in GDScript, you can type cast values using the as
keyword :
var vector2_pool = PoolVector2Array([Vector2(0, 0), Vector2(1, 0)])
if vector2_pool.has(Vector2(0, 0)): # will throw error
print("true")
if (vector2_pool as Array).has(Vector2(0, 0)): # properly print true
print("true")
Please read more about static typing here.
Best regards, Leirda