Package it.unive.lisa.analysis.string
Interface ContainsCharProvider
-
public interface ContainsCharProviderInterface for a string analysis that exposes thecontainsChar(char)method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description it.unive.lisa.analysis.SemanticDomain.SatisfiabilitycontainsChar(char c)Simplified semantics of the string contains operator, checking a single character is part of the string.
-
-
-
Method Detail
-
containsChar
it.unive.lisa.analysis.SemanticDomain.Satisfiability containsChar(char c) throws it.unive.lisa.analysis.SemanticExceptionSimplified semantics of the string contains operator, checking a single character is part of the string.- Parameters:
c- the character to check- Returns:
- whether or not the character is part of the string
- Throws:
it.unive.lisa.analysis.SemanticException- if something goes wrong during the computation
-
-