Skip to content
This repository has been archived by the owner on Aug 26, 2023. It is now read-only.

import operators from Base explicitly #68

Merged
merged 1 commit into from
Jul 30, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/seq/seq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ module Seq
using Compat
using Base.Intrinsics

import Base: convert, complement, getindex, show, length, start, next, done,
copy, reverse, show, endof, isless, clipboard, parse, repeat,
unsafe_copy!, read, read!, ==, *, |, &
import Base: convert, complement, show, length, start, next, done, copy,
reverse, show, endof, isless, clipboard, parse, repeat,
unsafe_copy!, read, read!,
# operators
getindex, setindex!, ==, *, ^, |, &

import Bio: FileFormat

Expand Down