#include "internal.h" // Equals returns true if string s and t are equivalent. bool string·equals(string s, string t) { vlong sL = string·len(s); vlong tL = string·len(t); if(sL != tL) return false; return mem·compare(s, sL, t) == 0; }