@@ -719,12 +719,6 @@ public static Scalar<bool> IsMissingValue(this Scalar<double> input)
719
719
return new OutScalar < double > ( input ) ;
720
720
}
721
721
722
- public static Scalar < bool > IsMissingValue ( this Scalar < string > input )
723
- {
724
- Contracts . CheckValue ( input , nameof ( input ) ) ;
725
- return new OutScalar < string > ( input ) ;
726
- }
727
-
728
722
public static Vector < bool > IsMissingValue ( this Vector < float > input )
729
723
{
730
724
Contracts . CheckValue ( input , nameof ( input ) ) ;
@@ -737,12 +731,6 @@ public static Vector<bool> IsMissingValue(this Vector<double> input)
737
731
return new OutVectorColumn < double > ( input ) ;
738
732
}
739
733
740
- public static Vector < bool > IsMissingValue ( this Vector < string > input )
741
- {
742
- Contracts . CheckValue ( input , nameof ( input ) ) ;
743
- return new OutVectorColumn < string > ( input ) ;
744
- }
745
-
746
734
public static VarVector < bool > IsMissingValue ( this VarVector < float > input )
747
735
{
748
736
Contracts . CheckValue ( input , nameof ( input ) ) ;
@@ -754,11 +742,5 @@ public static VarVector<bool> IsMissingValue(this VarVector<double> input)
754
742
Contracts . CheckValue ( input , nameof ( input ) ) ;
755
743
return new OutVarVectorColumn < double > ( input ) ;
756
744
}
757
-
758
- public static VarVector < bool > IsMissingValue ( this VarVector < string > input )
759
- {
760
- Contracts . CheckValue ( input , nameof ( input ) ) ;
761
- return new OutVarVectorColumn < string > ( input ) ;
762
- }
763
745
}
764
746
}
0 commit comments