• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

MeltyPlayer / MeltyTool / 20982513833

14 Jan 2026 04:35AM UTC coverage: 41.138% (-0.8%) from 41.907%
20982513833

push

github

MeltyPlayer
Fixed broken shader source tests.

6752 of 18485 branches covered (36.53%)

Branch coverage included in aggregate %.

28650 of 67572 relevant lines covered (42.4%)

64006.02 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

92.31
/FinModelUtility/Fin/Fin/src/util/sets/HashSetExtensions.cs
1
using System.Collections.Generic;
2
using System.Linq;
3

4
using fin.io;
5

6
namespace fin.util.sets;
7

8
public static class HashSetExtensions {
9
  public static HashSet<T> AsSet<T>(this T value) => [value];
3✔
10

11
  public static HashSet<IReadOnlyGenericFile> AsFileSet(
12
      this IReadOnlyGenericFile[] values)
13
    => values.ToHashSet();
×
14

15
  public static HashSet<IReadOnlyGenericFile> AsFileSet<T>(this T value)
16
      where T : IReadOnlyGenericFile
17
    => [value];
28✔
18

19
  public static bool Add<T>(this ISet<T> set, IEnumerable<T> values) {
39✔
20
    var didAddAny = false;
39✔
21
    foreach (var value in values) {
1,998✔
22
      var didAdd = set.Add(value);
627✔
23
      didAddAny = didAddAny || didAdd;
627✔
24
    }
627✔
25

26
    return didAddAny;
39✔
27
  }
39✔
28
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc