MCPcopy Create free account
hub / github.com/Rishabh062/Hacktoberfest2021 / ArraySet

Class ArraySet

Java/ArrayToSet.java:5–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import java.util.*;
4
5public class ArraySet {
6
7 public static void main(String[] args) {
8
9 String[] array = {"a", "b", "c"};
10 Set<String> set = new HashSet<>(Arrays.asList(array));
11
12 System.out.println("Set: " + set);
13 }
14}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected