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

Method main

Java/ArrayToSet.java:7–13  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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