%PDF- %PDF-
| Direktori : /proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/builtins/file/ |
| Current File : //proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/builtins/file/write.hpp |
#ifndef PYTHONIC_BUILTIN_FILE_WRITE_HPP
#define PYTHONIC_BUILTIN_FILE_WRITE_HPP
#include "pythonic/include/builtins/file/write.hpp"
#include "pythonic/types/file.hpp"
#include "pythonic/types/str.hpp"
#include "pythonic/utils/functor.hpp"
PYTHONIC_NS_BEGIN
namespace builtins
{
namespace file
{
long write(types::file &f, types::str const &str)
{
return f.write(str);
}
long write(types::file &&f, types::str const &str)
{
return f.write(str);
}
}
}
PYTHONIC_NS_END
#endif