AppendixReferencesCheatcodes ReferenceUtilitiesparseBoolVersion: v. 1On this pageparseBoolSignature function parseBool(string calldata stringifiedValue) external pure returns (bool parsedValue); Description Parses the value of string into bool Examples string memory boolAsString = "false";bool stringToBool = vm.parseBool(boolAsString); // false