parseBool
Signature
Section titled “Signature”function parseBool( string calldata stringifiedValue) external pure returns (bool parsedValue);Description
Section titled “Description”Parses the value of string into bool
Examples
Section titled “Examples”string memory boolAsString = "false";bool stringToBool = vm.parseBool(boolAsString); // false