// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. namespace search { class BufferWriter; template using WorkFunc = void (*)(const std::vector &v, BufferWriter &writer); template void work(const std::vector &v, BufferWriter &writer); template void workLambda(const std::vector &v, BufferWriter &writer); template void workFunctor(const std::vector &v, BufferWriter &writer); template void workFunctor2(const std::vector &v, BufferWriter &writer); } // namespace search