Posting this to biojava-l rather than biojava-dev, to get
maximum visibility...
Does anyone use the FeatureFilter.AndNot class anywhere?
This is redundant in that:
new FeatureFilter.AndNot(foo, bar)
Could be expressed as:
new FeatureFilter.And(foo, new FeatureFilter.Not(bar));
It's reall
Hi -
Hi -
I actually quite like the semantics, it may not be terse but it's much
easier to read and figure out what is going on.
If we have to delete it I would favour deprecating it for a while,
especially if it actually works.
Just my $0.02
- Mark
> -Original Message-
> From: Thomas
On Fri, Nov 01, 2002 at 09:21:44AM +1300, Schreiber, Mark wrote:
> Hi -
>
> I actually quite like the semantics, it may not be terse but it's much
> easier to read and figure out what is going on.
>
> If we have to delete it I would favour deprecating it for a while,
> especially if it actually w
No I'm not using it. I just thought it was more understandable than the
alternative.
> -Original Message-
> From: Thomas Down [mailto:td2@;sanger.ac.uk]
> Sent: Friday, 1 November 2002 1:30 p.m.
> To: Schreiber, Mark
> Cc: [EMAIL PROTECTED]
> Subject: Re: [Biojava-l] FeatureFilter.AndNot