2020-06-07 13:42:09 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-06-07 12:33:49 +00:00
|
|
|
#include <Core/ColumnWithTypeAndName.h>
|
|
|
|
#include <Core/Types.h>
|
|
|
|
|
|
|
|
#include <boost/variant.hpp>
|
|
|
|
#include <boost/geometry/geometries/geometries.hpp>
|
|
|
|
#include <boost/geometry.hpp>
|
|
|
|
#include <boost/geometry/geometries/point_xy.hpp>
|
|
|
|
|
2020-06-07 14:28:46 +00:00
|
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
#include <Columns/ColumnArray.h>
|
|
|
|
#include <Columns/ColumnTuple.h>
|
2021-02-16 19:50:34 +00:00
|
|
|
#include <Common/NaNUtils.h>
|
2020-06-07 14:28:46 +00:00
|
|
|
#include <DataTypes/DataTypeArray.h>
|
|
|
|
#include <DataTypes/IDataType.h>
|
2021-02-19 22:26:33 +00:00
|
|
|
#include <DataTypes/DataTypeCustomGeo.h>
|
2020-06-07 16:47:56 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <Interpreters/castColumn.h>
|
2020-06-07 14:28:46 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
#include <cmath>
|
2020-06-21 17:59:18 +00:00
|
|
|
#include <common/logger_useful.h>
|
|
|
|
|
2021-01-19 17:16:10 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2020-06-07 12:33:49 +00:00
|
|
|
|
2020-06-07 14:28:46 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2020-06-14 17:04:10 +00:00
|
|
|
extern const int BAD_ARGUMENTS;
|
2021-02-16 19:50:34 +00:00
|
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
2020-06-07 14:28:46 +00:00
|
|
|
}
|
2020-06-07 12:33:49 +00:00
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
template <typename Point>
|
2021-02-18 19:51:19 +00:00
|
|
|
using Ring = boost::geometry::model::ring<Point>;
|
2021-01-19 14:52:53 +00:00
|
|
|
|
|
|
|
template <typename Point>
|
2021-02-18 19:51:19 +00:00
|
|
|
using Polygon = boost::geometry::model::polygon<Point>;
|
2021-01-19 14:52:53 +00:00
|
|
|
|
|
|
|
template <typename Point>
|
2021-02-18 19:51:19 +00:00
|
|
|
using MultiPolygon = boost::geometry::model::multi_polygon<Polygon<Point>>;
|
2021-01-19 14:52:53 +00:00
|
|
|
|
|
|
|
template <typename Point>
|
|
|
|
using Geometry = boost::variant<Point, Ring<Point>, Polygon<Point>, MultiPolygon<Point>>;
|
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
template <typename Point>
|
|
|
|
using Figure = boost::variant<Ring<Point>, Polygon<Point>, MultiPolygon<Point>>;
|
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
using CartesianPoint = boost::geometry::model::d2::point_xy<Float64>;
|
2021-01-19 14:52:53 +00:00
|
|
|
using CartesianRing = Ring<CartesianPoint>;
|
|
|
|
using CartesianPolygon = Polygon<CartesianPoint>;
|
|
|
|
using CartesianMultiPolygon = MultiPolygon<CartesianPoint>;
|
|
|
|
using CartesianGeometry = Geometry<CartesianPoint>;
|
2021-01-18 23:51:34 +00:00
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
using GeographicPoint = boost::geometry::model::point<Float64, 2, boost::geometry::cs::geographic<boost::geometry::degree>>;
|
2021-01-19 14:52:53 +00:00
|
|
|
using GeographicRing = Ring<GeographicPoint>;
|
|
|
|
using GeographicPolygon = Polygon<GeographicPoint>;
|
|
|
|
using GeographicMultiPolygon = MultiPolygon<GeographicPoint>;
|
|
|
|
using GeographicGeometry = Geometry<GeographicPoint>;
|
2021-01-18 23:51:34 +00:00
|
|
|
|
2021-02-19 18:09:38 +00:00
|
|
|
|
|
|
|
template<class Point>
|
|
|
|
class RingFromColumnParser;
|
|
|
|
|
|
|
|
template<class Point>
|
|
|
|
class PolygonFromColumnParser;
|
|
|
|
|
|
|
|
template<class Point>
|
|
|
|
class MultiPolygonFromColumnParser;
|
|
|
|
|
2021-01-18 23:51:34 +00:00
|
|
|
/**
|
2021-01-19 17:16:10 +00:00
|
|
|
* Class which takes some boost type and returns a pair of numbers.
|
|
|
|
* They are (x,y) in case of cartesian coordinated and (lon,lat) in case of geographic.
|
2021-01-18 23:51:34 +00:00
|
|
|
*/
|
2021-02-19 18:09:38 +00:00
|
|
|
template <typename Point>
|
2021-01-18 23:51:34 +00:00
|
|
|
class PointFromColumnParser
|
2020-06-07 13:42:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-02-19 22:26:33 +00:00
|
|
|
PointFromColumnParser() = default;
|
2021-02-18 19:51:19 +00:00
|
|
|
|
2021-02-11 20:37:05 +00:00
|
|
|
explicit PointFromColumnParser(ColumnPtr col_) : col(col_)
|
2020-06-07 14:28:46 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
std::vector<Point> parse() const;
|
2021-01-18 23:51:34 +00:00
|
|
|
|
2020-06-07 13:42:09 +00:00
|
|
|
private:
|
2021-02-19 22:26:33 +00:00
|
|
|
std::vector<Point> parseImpl(size_t shift, size_t count) const;
|
|
|
|
|
|
|
|
friend class RingFromColumnParser<Point>;
|
|
|
|
ColumnPtr col{nullptr};
|
2020-06-07 13:42:09 +00:00
|
|
|
};
|
|
|
|
|
2021-02-18 19:51:19 +00:00
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
template<class Point>
|
2020-06-07 14:28:46 +00:00
|
|
|
class RingFromColumnParser
|
|
|
|
{
|
|
|
|
public:
|
2021-02-19 22:26:33 +00:00
|
|
|
RingFromColumnParser() = default;
|
|
|
|
|
2021-02-11 20:37:05 +00:00
|
|
|
explicit RingFromColumnParser(ColumnPtr col_)
|
2021-01-19 22:07:10 +00:00
|
|
|
: col(col_)
|
2021-02-18 19:51:19 +00:00
|
|
|
, point_parser(typeid_cast<const ColumnArray &>(*col_).getDataPtr())
|
2020-06-07 14:28:46 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
std::vector<Ring<Point>> parse() const;
|
2020-06-07 14:28:46 +00:00
|
|
|
|
|
|
|
private:
|
2021-02-19 22:26:33 +00:00
|
|
|
friend class PointFromColumnParser<Point>;
|
2021-01-19 22:07:10 +00:00
|
|
|
/// To prevent use-after-free and increase column lifetime.
|
2021-02-19 22:26:33 +00:00
|
|
|
ColumnPtr col{nullptr};
|
|
|
|
const PointFromColumnParser<Point> point_parser{};
|
2020-06-07 14:28:46 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
template<class Point>
|
2020-06-07 14:58:34 +00:00
|
|
|
class PolygonFromColumnParser
|
|
|
|
{
|
|
|
|
public:
|
2021-02-19 22:26:33 +00:00
|
|
|
PolygonFromColumnParser() = default;
|
|
|
|
|
2021-02-11 20:37:05 +00:00
|
|
|
explicit PolygonFromColumnParser(ColumnPtr col_)
|
2021-01-19 22:07:10 +00:00
|
|
|
: col(col_)
|
2021-02-18 19:51:19 +00:00
|
|
|
, ring_parser(typeid_cast<const ColumnArray &>(*col_).getDataPtr())
|
2020-06-07 14:58:34 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
std::vector<Polygon<Point>> parse() const;
|
2021-02-19 18:09:38 +00:00
|
|
|
|
2020-06-07 14:58:34 +00:00
|
|
|
private:
|
2021-02-19 18:09:38 +00:00
|
|
|
friend class MultiPolygonFromColumnParser<Point>;
|
|
|
|
|
2021-01-19 22:07:10 +00:00
|
|
|
/// To prevent use-after-free and increase column lifetime.
|
2021-02-19 22:26:33 +00:00
|
|
|
ColumnPtr col{nullptr};
|
|
|
|
const RingFromColumnParser<Point> ring_parser{};
|
2020-06-07 14:58:34 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
template<class Point>
|
2020-06-07 14:58:34 +00:00
|
|
|
class MultiPolygonFromColumnParser
|
|
|
|
{
|
|
|
|
public:
|
2021-02-19 22:26:33 +00:00
|
|
|
MultiPolygonFromColumnParser() = default;
|
|
|
|
|
2021-02-11 20:37:05 +00:00
|
|
|
explicit MultiPolygonFromColumnParser(ColumnPtr col_)
|
2021-01-19 22:07:10 +00:00
|
|
|
: col(col_)
|
2021-02-18 19:51:19 +00:00
|
|
|
, polygon_parser(typeid_cast<const ColumnArray &>(*col_).getDataPtr())
|
2020-06-07 14:58:34 +00:00
|
|
|
{}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
std::vector<MultiPolygon<Point>> parse() const;
|
2020-06-07 14:58:34 +00:00
|
|
|
|
|
|
|
private:
|
2021-01-19 22:07:10 +00:00
|
|
|
/// To prevent use-after-free and increase column lifetime.
|
2021-02-19 22:26:33 +00:00
|
|
|
ColumnPtr col{nullptr};
|
|
|
|
const PolygonFromColumnParser<Point> polygon_parser{};
|
2020-06-07 14:58:34 +00:00
|
|
|
};
|
|
|
|
|
2021-01-18 23:51:34 +00:00
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
extern template class PointFromColumnParser<CartesianPoint>;
|
|
|
|
extern template class PointFromColumnParser<GeographicPoint>;
|
|
|
|
extern template class RingFromColumnParser<CartesianPoint>;
|
|
|
|
extern template class RingFromColumnParser<GeographicPoint>;
|
|
|
|
extern template class PolygonFromColumnParser<CartesianPoint>;
|
|
|
|
extern template class PolygonFromColumnParser<GeographicPoint>;
|
|
|
|
extern template class MultiPolygonFromColumnParser<CartesianPoint>;
|
|
|
|
extern template class MultiPolygonFromColumnParser<GeographicPoint>;
|
2021-02-15 19:22:13 +00:00
|
|
|
|
2020-06-07 16:04:35 +00:00
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
/// To serialize Geographic or Cartesian point (a pair of numbers in both cases).
|
|
|
|
template <typename Point>
|
2021-02-19 22:26:33 +00:00
|
|
|
class PointSerializer
|
2020-06-14 17:04:10 +00:00
|
|
|
{
|
2020-06-14 17:37:15 +00:00
|
|
|
public:
|
2021-02-19 22:26:33 +00:00
|
|
|
PointSerializer()
|
2021-01-19 14:52:53 +00:00
|
|
|
: first(ColumnFloat64::create())
|
|
|
|
, second(ColumnFloat64::create())
|
2021-02-19 22:26:33 +00:00
|
|
|
, first_container(first->getData())
|
|
|
|
, second_container(second->getData())
|
2020-06-14 17:04:10 +00:00
|
|
|
{}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
explicit PointSerializer(size_t n)
|
2021-01-19 14:52:53 +00:00
|
|
|
: first(ColumnFloat64::create(n))
|
|
|
|
, second(ColumnFloat64::create(n))
|
2021-02-19 22:26:33 +00:00
|
|
|
, first_container(first->getData())
|
|
|
|
, second_container(second->getData())
|
2020-06-14 17:04:10 +00:00
|
|
|
{}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
void add(const Point & point)
|
2020-06-14 17:04:10 +00:00
|
|
|
{
|
2021-02-19 22:26:33 +00:00
|
|
|
first_container.emplace_back(point.template get<0>());
|
|
|
|
second_container.emplace_back(point.template get<1>());
|
2020-06-14 17:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ColumnPtr finalize()
|
|
|
|
{
|
|
|
|
Columns columns(2);
|
2021-01-19 14:52:53 +00:00
|
|
|
columns[0] = std::move(first);
|
|
|
|
columns[1] = std::move(second);
|
2020-06-14 17:04:10 +00:00
|
|
|
|
|
|
|
return ColumnTuple::create(columns);
|
|
|
|
}
|
2020-06-14 17:37:15 +00:00
|
|
|
|
|
|
|
private:
|
2021-01-19 14:52:53 +00:00
|
|
|
ColumnFloat64::MutablePtr first;
|
|
|
|
ColumnFloat64::MutablePtr second;
|
2021-02-19 22:26:33 +00:00
|
|
|
|
|
|
|
ColumnFloat64::Container & first_container;
|
|
|
|
ColumnFloat64::Container & second_container;
|
2020-06-14 17:37:15 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
template <typename Point>
|
2021-02-19 22:26:33 +00:00
|
|
|
class RingSerializer
|
2020-06-14 17:37:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-02-19 22:26:33 +00:00
|
|
|
RingSerializer()
|
2020-06-14 17:37:15 +00:00
|
|
|
: offsets(ColumnUInt64::create())
|
|
|
|
{}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
explicit RingSerializer(size_t n)
|
2020-06-14 17:37:15 +00:00
|
|
|
: offsets(ColumnUInt64::create(n))
|
|
|
|
{}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
void add(const Ring<Point> & ring)
|
2020-06-14 17:37:15 +00:00
|
|
|
{
|
|
|
|
size += ring.size();
|
|
|
|
offsets->insertValue(size);
|
|
|
|
for (const auto & point : ring)
|
2021-02-19 22:26:33 +00:00
|
|
|
point_serializer.add(point);
|
2020-06-14 17:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ColumnPtr finalize()
|
|
|
|
{
|
2021-02-11 20:37:05 +00:00
|
|
|
return ColumnArray::create(point_serializer.finalize(), std::move(offsets));
|
2020-06-14 17:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2020-06-21 15:18:09 +00:00
|
|
|
size_t size = 0;
|
2021-02-19 22:26:33 +00:00
|
|
|
PointSerializer<Point> point_serializer;
|
2020-06-14 17:37:15 +00:00
|
|
|
ColumnUInt64::MutablePtr offsets;
|
|
|
|
};
|
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
template <typename Point>
|
2021-02-19 22:26:33 +00:00
|
|
|
class PolygonSerializer
|
2020-06-14 17:37:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-02-19 22:26:33 +00:00
|
|
|
PolygonSerializer()
|
2020-06-14 17:37:15 +00:00
|
|
|
: offsets(ColumnUInt64::create())
|
|
|
|
{}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
explicit PolygonSerializer(size_t n)
|
2020-06-14 17:37:15 +00:00
|
|
|
: offsets(ColumnUInt64::create(n))
|
|
|
|
{}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
void add(const Ring<Point> & ring)
|
2020-06-14 17:37:15 +00:00
|
|
|
{
|
|
|
|
size++;
|
|
|
|
offsets->insertValue(size);
|
2021-02-19 22:26:33 +00:00
|
|
|
ring_serializer.add(ring);
|
2020-06-14 17:37:15 +00:00
|
|
|
}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
void add(const Polygon<Point> & polygon)
|
2020-06-14 17:37:15 +00:00
|
|
|
{
|
|
|
|
size += 1 + polygon.inners().size();
|
|
|
|
offsets->insertValue(size);
|
2021-02-19 22:26:33 +00:00
|
|
|
ring_serializer.add(polygon.outer());
|
2020-06-14 17:37:15 +00:00
|
|
|
for (const auto & ring : polygon.inners())
|
2021-02-19 22:26:33 +00:00
|
|
|
ring_serializer.add(ring);
|
2020-06-14 17:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ColumnPtr finalize()
|
|
|
|
{
|
2021-02-11 20:37:05 +00:00
|
|
|
return ColumnArray::create(ring_serializer.finalize(), std::move(offsets));
|
2020-06-14 17:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2020-06-21 15:18:09 +00:00
|
|
|
size_t size = 0;
|
2021-02-19 22:26:33 +00:00
|
|
|
RingSerializer<Point> ring_serializer;
|
2020-06-14 17:37:15 +00:00
|
|
|
ColumnUInt64::MutablePtr offsets;
|
|
|
|
};
|
|
|
|
|
2021-01-19 14:52:53 +00:00
|
|
|
template <typename Point>
|
2021-02-19 22:26:33 +00:00
|
|
|
class MultiPolygonSerializer
|
2020-06-14 17:37:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-02-19 22:26:33 +00:00
|
|
|
MultiPolygonSerializer()
|
2020-06-14 17:37:15 +00:00
|
|
|
: offsets(ColumnUInt64::create())
|
|
|
|
{}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
explicit MultiPolygonSerializer(size_t n)
|
2020-06-14 17:37:15 +00:00
|
|
|
: offsets(ColumnUInt64::create(n))
|
|
|
|
{}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
void add(const Ring<Point> & ring)
|
2020-06-14 17:37:15 +00:00
|
|
|
{
|
|
|
|
size++;
|
|
|
|
offsets->insertValue(size);
|
2021-02-19 22:26:33 +00:00
|
|
|
polygon_serializer.add(ring);
|
2020-06-14 17:37:15 +00:00
|
|
|
}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
void add(const Polygon<Point> & polygon)
|
2020-06-14 17:37:15 +00:00
|
|
|
{
|
|
|
|
size++;
|
|
|
|
offsets->insertValue(size);
|
2021-02-19 22:26:33 +00:00
|
|
|
polygon_serializer.add(polygon);
|
2020-06-14 17:37:15 +00:00
|
|
|
}
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
void add(const MultiPolygon<Point> & multi_polygon)
|
2020-06-14 17:37:15 +00:00
|
|
|
{
|
2020-06-21 15:22:00 +00:00
|
|
|
size += multi_polygon.size();
|
2020-06-14 17:37:15 +00:00
|
|
|
offsets->insertValue(size);
|
|
|
|
for (const auto & polygon : multi_polygon)
|
|
|
|
{
|
2021-02-19 22:26:33 +00:00
|
|
|
polygon_serializer.add(polygon);
|
2020-06-14 17:37:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnPtr finalize()
|
|
|
|
{
|
2021-02-11 20:37:05 +00:00
|
|
|
return ColumnArray::create(polygon_serializer.finalize(), std::move(offsets));
|
2020-06-14 17:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2020-06-21 15:18:09 +00:00
|
|
|
size_t size = 0;
|
2021-02-19 22:26:33 +00:00
|
|
|
PolygonSerializer<Point> polygon_serializer;
|
2020-06-14 17:37:15 +00:00
|
|
|
ColumnUInt64::MutablePtr offsets;
|
|
|
|
};
|
2020-06-14 17:04:10 +00:00
|
|
|
|
2021-02-19 22:48:59 +00:00
|
|
|
|
|
|
|
template <typename PType>
|
|
|
|
struct ParserType
|
|
|
|
{
|
|
|
|
using Type = PType;
|
|
|
|
};
|
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
template <typename Point, typename F>
|
|
|
|
static void callOnGeometryDataType(DataTypePtr type, F && f)
|
2020-06-14 17:04:10 +00:00
|
|
|
{
|
2021-02-19 22:26:33 +00:00
|
|
|
if (DataTypeCustomRingSerialization::nestedDataType()->equals(*type))
|
2021-02-19 22:48:59 +00:00
|
|
|
return f(ParserType<RingFromColumnParser<Point>>());
|
2021-02-19 22:26:33 +00:00
|
|
|
if (DataTypeCustomPolygonSerialization::nestedDataType()->equals(*type))
|
2021-02-19 22:48:59 +00:00
|
|
|
return f(ParserType<PolygonFromColumnParser<Point>>());
|
2021-02-19 22:26:33 +00:00
|
|
|
if (DataTypeCustomMultiPolygonSerialization::nestedDataType()->equals(*type))
|
2021-02-19 22:48:59 +00:00
|
|
|
return f(ParserType<MultiPolygonFromColumnParser<Point>>());
|
2021-02-19 22:26:33 +00:00
|
|
|
throw Exception(fmt::format("Unknown geometry type {}", type->getName()), ErrorCodes::BAD_ARGUMENTS);
|
|
|
|
}
|
2021-01-19 14:52:53 +00:00
|
|
|
|
2020-06-14 17:04:10 +00:00
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
template <typename Point, typename F>
|
|
|
|
static void callOnTwoGeometryDataTypes(DataTypePtr left_type, DataTypePtr right_type, F && func)
|
|
|
|
{
|
|
|
|
return callOnGeometryDataType<Point>(left_type, [&](const auto & left_types)
|
|
|
|
{
|
2021-02-19 22:48:59 +00:00
|
|
|
using LeftParserType = std::decay_t<decltype(left_types)>;
|
2021-02-15 19:22:13 +00:00
|
|
|
|
2021-02-19 22:26:33 +00:00
|
|
|
return callOnGeometryDataType<Point>(right_type, [&](const auto & right_types)
|
|
|
|
{
|
2021-02-19 22:48:59 +00:00
|
|
|
using RightParserType = std::decay_t<decltype(right_types)>;
|
2021-02-15 19:22:13 +00:00
|
|
|
|
2021-02-19 22:48:59 +00:00
|
|
|
return func(LeftParserType(), RightParserType());
|
2021-02-19 22:26:33 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2021-02-19 18:09:38 +00:00
|
|
|
|
2020-06-07 12:33:49 +00:00
|
|
|
}
|