$P$ and $P'$ are strings (sequence of characters).
$P_i$ and $P_i'$ are characters.
I want to define equality condition between $P$ and $P'$ like the following:
$Equal(P,P')=\begin{cases} \mathrm{false}, & |P| \neq |P'| \\ \underset{i=1}{\stackrel{|P|}{\bigwedge}} (~ P_i = P'_i ~), & \text{otherwise} \end{cases} $
Can I call it a 'function?' Logical/Boolean/Pseudo-function, anything...
What should I call it?