Example #1
0
            public VectorType GetSlotType(int col)
            {
                _parent.Host.CheckParam(0 <= col && col < ColumnCount, nameof(col));

                bool isSrc;
                int  index = MapColumnIndex(out isSrc, col);

                if (isSrc)
                {
                    if (_inputTransposed != null)
                    {
                        return(_inputTransposed.GetSlotType(index));
                    }
                    return(null);
                }
                return(_parent.GetSlotTypeCore(index));
            }