Comment on page

Check if euint exists (value in map)

If you have a map with euints as values (for example user balances that are represented as address->euint) and want to check whether or not a value has been set, you can use the TFHE.isInitialized function
if (!TFHE.isInitialized(highestBid)) {
highestBid = currentBid;
}