// File:       hbplti.c++
// Version:    1.00
// Author:     (c) Miles Sabin, 1997
// Purpose:    standard instantiations of HoistBinaryPredicate<BinaryPredicate, T>

// Change log:
//  13/01/97   v. 1.00

#include "functional.h"

#include "hoistbp.c++"


HoistBinaryPredicateProtocol& get_hoist_less_comparator(unsigned int*)
{
  static less<unsigned int> comparator;
  static HoistBinaryPredicate<less<unsigned int>, unsigned int> singleton(comparator);
  return singleton;
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(unsigned long*)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(char**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(char const**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(short**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(int**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(long**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(unsigned char**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(unsigned char const**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(unsigned short**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(unsigned int**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(unsigned long**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(float**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(double**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(string**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}

HoistBinaryPredicateProtocol& get_hoist_less_comparator(void**)
{
  return get_hoist_less_comparator((unsigned int*)0);
}
