No, it's available in 1.0.2005.1 It's stored in the filtering and sorting section of the manual. In there in 'the predicate system' you find code which formulates both, so you can see the differences. Example:
...
WHERE TableFields.Foo = "One" OR
TableFields.Foo = "Two" OR
TableFields.Foo = "Three" OR
TableFIelds.Foo = "Four"
you should use this code:
// C#
IPredicateExpression filter =
((TableFields.Foo=="One") | (TableFields.Foo=="Two"))
.AddWithOr(TableFields.Foo=="Three")
.AddWithOr(TableFields.Foo=="Four);
// which is equal to:
IPredicateExpression filter = new PredicateExpression();
filter.Add(TableFields.Foo=="One")
.AddWithOr(TableFields.Foo=="Two")
.AddWithOr(TableFields.Foo=="Three")
.AddWithOr(TableFields.Foo=="Four);
// which is equal to:
IPredicateExpression filter = new PredicateExpression();
filter.Add(PredicateFactory.CompareValue(TableFieldIndex.Foo, ComparisonOperator.Equal, "One"))
.AddWithOr(PredicateFactory.CompareValue(TableFieldIndex.Foo, ComparisonOperator.Equal, "Two"))
.AddWithOr(PredicateFactory.CompareValue(TableFieldIndex.Foo, ComparisonOperator.Equal, "Three"))
.AddWithOr(PredicateFactory.CompareValue(TableFieldIndex.Foo, ComparisonOperator.Equal, "Four"));