From 2c0f1098351d6c0763d985c2085ec676a7992e2d Mon Sep 17 00:00:00 2001 From: Paul David Date: Tue, 9 May 2017 21:36:02 -0400 Subject: Types: Added equality/inquality operators to support Boost.Python additions - Added to subdev_spec_pair_t - Added to range_t - Added tests for the inequalities --- host/lib/types/ranges.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'host/lib/types') diff --git a/host/lib/types/ranges.cpp b/host/lib/types/ranges.cpp index ee4546cb8..d22e2fb6a 100644 --- a/host/lib/types/ranges.cpp +++ b/host/lib/types/ranges.cpp @@ -63,6 +63,18 @@ const std::string range_t::to_pp_string(void) const{ return ss.str(); } +bool range_t::operator==(const range_t &other) const{ + return (other._start == _start and + other._step == _step and + other._stop == _stop); +} + +bool range_t::operator!=(const range_t &other) const{ + return (other._start != _start or + other._step != _step or + other._stop != _stop); +} + /*********************************************************************** * meta_range_t implementation code **********************************************************************/ -- cgit v1.2.3