class-finder

A utility to find classes, designed for use at the REPL

Лицензия

Лицензия

Группа

Группа

com.offbytwo.class-finder
Идентификатор

Идентификатор

class-finder
Последняя версия

Последняя версия

1.0.0
Дата

Дата

Тип

Тип

clojure
Описание

Описание

class-finder
A utility to find classes, designed for use at the REPL
Ссылка на сайт

Ссылка на сайт

http://github.com/cosmin/class-finder/
Система контроля версий

Система контроля версий

https://github.com/cosmin/class-finder

Скачать class-finder

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.clojure : clojure jar 1.3.0
log4j : log4j jar 1.2.16

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.8.1

Модули Проекта

Данный проект не имеет модулей.

class-finder

A utility to find classes, designed for use at the REPL

Motivation

When writing code in an IDE I can simply let the IDE figure out which package it needs to import the class from. I miss that experience when writing code at the REPL. class-finder is the solution.

Usage

Leiningen

:dependencies [[com.offbytwo.class-finder/class-finder "1.0.0"]]

Maven

<dependency>
  <groupId>org.offbytwo.class-finder</groupId>
  <artifactId>class-finder</groupId>
  <version>1.0.0</version>
</dependency>

Require class-finder

(require '[class-finder.core :as cf])

Find all classes called Pattern

(cf/find-classes "Pattern")

Find all classes that match a pattern

(cf/find-classes "*List")

Restrict search to a specific package

(cf/find-classes "*List" "java.util")

License

Copyright (C) 2012 Cosmin Stejerean

Distributed under the Eclipse Public License, the same as Clojure.

Версии библиотеки

Версия
1.0.0