You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

OneofExtension.cs 246 B

12345678910111213
  1. using OneOf;
  2. using System;
  3. namespace Tensorflow.Common.Extensions
  4. {
  5. public static class OneofExtension
  6. {
  7. public static bool IsTypeOrDeriveFrom<T>(this IOneOf src)
  8. {
  9. return src.Value is T;
  10. }
  11. }
  12. }