Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/LFYSec/MScan
/ newSet
Method
newSet
src/main/java/pascal/taie/util/collection/Sets.java:37–39 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
35
36
// Factory methods for sets and maps
37
public
static
<E> Set<E> newSet() {
38
return
new
HashSet<>();
39
}
40
41
public
static
<E> Set<E> newSet(Collection<? extends E> set) {
42
return
new
HashSet<>(set);
Callers
15
test
Method · 0.95
buildStmts
Method · 0.95
getUncaughtOf
Method · 0.95
computeMethodMods
Method · 0.95
analyze
Method · 0.95
processResults
Method · 0.95
AbstractCallGraph
Class · 0.95
AbstractCFG
Method · 0.95
analyze
Method · 0.95
analyze
Method · 0.95
ConstraintChecker
Class · 0.95
LogBasedModel
Class · 0.95
Calls
1
newSmallSet
Method · 0.95
Tested by
1
test
Method · 0.76