@@ -719,12 +719,6 @@ public static Scalar<bool> IsMissingValue(this Scalar<double> input)
719719 return new OutScalar < double > ( input ) ;
720720 }
721721
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-
728722 public static Vector < bool > IsMissingValue ( this Vector < float > input )
729723 {
730724 Contracts . CheckValue ( input , nameof ( input ) ) ;
@@ -737,12 +731,6 @@ public static Vector<bool> IsMissingValue(this Vector<double> input)
737731 return new OutVectorColumn < double > ( input ) ;
738732 }
739733
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-
746734 public static VarVector < bool > IsMissingValue ( this VarVector < float > input )
747735 {
748736 Contracts . CheckValue ( input , nameof ( input ) ) ;
@@ -754,11 +742,5 @@ public static VarVector<bool> IsMissingValue(this VarVector<double> input)
754742 Contracts . CheckValue ( input , nameof ( input ) ) ;
755743 return new OutVarVectorColumn < double > ( input ) ;
756744 }
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- }
763745 }
764746}
0 commit comments